# @cityofzion/neon-js

> Neon-JS SDK for interacting with NEO blockchain

Latest version **5.10.1** (published 2026-07-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install @cityofzion/neon-js
pnpm add @cityofzion/neon-js
yarn add @cityofzion/neon-js
bun add @cityofzion/neon-js
```

## Health

**Score 60/100 (C)** — status: active.

Positive: has types; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 5.10.1 |
| Published | 2026-07-17 |
| First published | 2017-11-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 5.3 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 184 |
| Author | Yak Jun Xiang |
| Maintainers | snowypowers, lllwvlvwlll, hal0x2328, hotequil, asch89, erik_coz |
| Keywords | neo, antshares, javascript, libraries |

## Links

- npm: https://www.npmjs.com/package/@cityofzion/neon-js
- Repository: https://github.com/CityOfZion/neon-js
- Homepage: https://github.com/CityOfZion/neon-js#readme
- Issues: https://github.com/CityOfZion/neon-js/issues
- npm.io page: https://npm.io/package/@cityofzion/neon-js

## Dependencies (2)

- [@cityofzion/neon-api](https://npm.io/package/@cityofzion/neon-api.md) ^5.10.1
- [@cityofzion/neon-core](https://npm.io/package/@cityofzion/neon-core.md) ^5.10.1

## Recent versions

- 5.10.1 (latest) — 2026-07-17
- 5.0.0-next.17 (next) — 2022-02-08
- 3.11.9 (previous) — 2018-12-17
- 5.10.0 — 2026-07-15
- 5.9.0 — 2026-04-30
- 5.8.1 — 2026-02-21
- 5.8.0 — 2025-10-23
- 5.7.0 — 2025-01-21
- 5.6.0 — 2024-05-21
- 5.5.1 — 2023-08-30
- 5.5.0 — 2023-07-26
- 5.4.0 — 2023-04-18
- 5.3.0 — 2022-12-16
- 5.2.2 — 2022-11-11
- 5.2.1 — 2022-11-07
- … 87 more at https://npm.io/package/@cityofzion/neon-js/versions

## README

# neon-js

Constructed package using:

- `neon-core`
- `neon-api`

In addition, this package exposes a high level semantic API binding for beginner usage. The semantic API can be found in the default export of the package.

```js
const Neon = require("cityofzion/neon-js");

console.log(Neon); // {wallet, tx, api, nep5, etc...}

const NeonJs = neon.default;

console.log(NeonJs); // {create, get, sign, verify,...}
```

The semantic API follows a convention of Verb-Noun. Any extra words beyond the first 2 is collapsed into the Noun and camelcased.

```js
NeonJs.create.stringStream("1234");
NeonJs.encrypt.privateKey("key");
```

---
_Source: https://npm.io/package/@cityofzion/neon-js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
