GithubHelp home page GithubHelp logo

isabella232 / neon Goto Github PK

View Code? Open in Web Editor NEW

This project forked from atom/neon

0.0 0.0 0.0 1.18 MB

A safe Rust abstraction layer for native Node.js modules.

License: Apache License 2.0

Makefile 0.50% Shell 0.05% Rust 71.04% Python 0.37% C++ 18.59% C 6.23% JavaScript 3.21%

neon's Introduction

Neon

neon

Build Status

A safe Rust abstraction layer for native Node.js modules.

Neon protects all handles to the JavaScript heap, even when they're allocated on the Rust stack, ensuring that objects are always safely tracked by the garbage collector.

Getting started

Install neon-cli as a global npm package:

npm install -g neon-cli

To create a new Neon project, use neon new:

neon new my-project

This will ask you a few questions and then generate a project skeleton for you. Follow the instructions from there to build and run your project!

Requirements

You'll need the following on all OSes:

  • Node v4 or later;
  • Rust v1.7 or later;
  • multirust (only required for Neon projects that override the system default Rust).

For Mac OS X, you'll need:

  • OS X 10.7 or later;
  • XCode.

A Taste...

A Neon function takes a Call object and produces a Rust Result that's either a JS value or the Throw constant (meaning a JS exception was thrown). The Call object provides access to a memory management scope, which safely manages the rooting of handles to heap objects:

fn make_an_array(call: Call) -> JsResult<JsArray> {
    let scope = call.scope; // the current scope for rooting handles
    let array: Handle<JsArray> = JsArray::new(scope, 3);
    try!(array.set(0, JsInteger::new(scope, 9000)));
    try!(array.set(1, JsObject::new(scope)));
    try!(array.set(2, JsNumber::new(scope, 3.14159)));
    Ok(array)
}

For a more complete demonstration, try building a hello world with neon new, or check out the slightly bigger word count demo.

Get Involved

The Neon community is just getting started and there's tons of fun to be had. Come play! :)

The Rust Bridge community Slack is open to all; use the Slackin app to receive an invitation.

License

Licensed under either of

at your option.

neon's People

Contributors

eddyb avatar edshaw avatar freebroccolo avatar king6cong avatar maxbrunsfeld avatar mfpiccolo avatar mmun avatar msvbg avatar nercury avatar thiagopnts avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.