Skip to content
XhacKX edited this page Nov 26, 2019 · 12 revisions

Welcome to the azur-json wiki!

We are the Open Source Community for Azur Lane Library.

JavaScript Development

Importing Library

import azurJson from 'azur-json'
// or const azurJson = require('azur-json')

console.log(azurJson.ships.getShip('z23'))
// or console.log(azurJson.getShip('z23'))
// => { ... }

import { getShip, getShipByName } from 'azur-json'
console.log(getShipByName('z23'))
// => { ... }
Clone this wiki locally