neon-bindings/neon

Rust bindings for writing safe and fast native Node.js modules.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 21 minutes ago
Added to GitGenius on September 7th, 2026
Created on September 19th, 2015
Open Issues & Pull Requests: 126 (+0)
GitHub issues: Enabled
Number of forks: 288
Total Stargazers: 8,424 (+0)
Total Subscribers: 80 (+0)

Repository Insights (GitGenius)

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 14
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 707 days
Stale 30+ days: 14
Stale 90+ days: 13

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • beginner friendly (2)
  • enhancement (2)
  • Triaged (1)
  • bug (1)
  • create-neon (1)
  • performance (1)
  • requires safe rust (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Neon is a Rust bindings library for writing safe and fast native Node.js modules.

Node.js native addons traditionally require writing C++ code that directly interfaces with the Node.js C API, which is error-prone and difficult to maintain. Neon solves this by providing Rust bindings to the Node-API standard, allowing developers to write native modules in Rust while leveraging Rust's memory safety guarantees. The tool handles the low-level interoperability between Rust and JavaScript, eliminating entire classes of bugs related to memory management and type safety that plague C++ implementations.

Neon suits projects where performance-critical operations need to run at native speed but where the safety and maintainability benefits of Rust outweigh the overhead of C++. It works across Linux, macOS, and Windows, and supports all current and maintenance releases of Node.js, with experimental support for Bun. The tool requires Rust stable version 1.65 or higher.

The project maintains an active test suite covering both JavaScript and Rust components through NPM and Cargo workspaces. Development activity shows ongoing attention to platform compatibility and Node.js version support, with explicit tracking of which Node releases receive active support. The project provides comprehensive documentation including fundamentals guides, API references, and migration resources for major version transitions.