Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 383 Bytes

File metadata and controls

21 lines (14 loc) · 383 Bytes

Install for CommonJS

The Nimiq Web Client ships with support for CommonJS.


And now you are ready to go!

const Nimiq = require('@nimiq/core')

async function main() {
  const config = new Nimiq.ClientConfiguration()
  const client = await Nimiq.Client.create(config.build())
}
main()