Socket
Socket
Sign inDemoInstall

nbind

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nbind - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

.travis.yml

18

package.json
{
"name": "nbind",
"version": "0.0.4",
"version": "0.0.5",
"description": "Embind-style bindings generator for Node.js",

@@ -12,2 +12,5 @@ "homepage": "https://github.com/charto/nbind",

"main": "gypiresolver.js",
"scripts": {
"test": "cd test && autogypi && node-gyp configure && node-gyp build && tap test.js"
},
"repository": {

@@ -17,6 +20,15 @@ "type": "git",

},
"os" : [ "darwin", "linux" ],
"os": [
"darwin",
"linux"
],
"dependencies": {
"nan": "^1.7.0"
"nan": "~1.7.0"
},
"devDependencies": {
"autogypi": "~0.0.3",
"bindings": "~1.2.1",
"node-gyp": "~1.0.3",
"tap": "~0.7.1"
}
}

8

README.md
nbind
=====
[![build status](http://img.shields.io/travis/charto/nbind.svg)](http://travis-ci.org/charto/nbind) [![npm version](https://img.shields.io/npm/v/nbind.svg)](https://www.npmjs.com/package/nbind)
nbind is a bindings generator for Node.js plugins inspired by [embind](http://kripken.github.io/emscripten-site/docs/porting/connecting_cpp_and_javascript/embind.html) from [emscripten](http://emscripten.org). The bindings are built along with your C++ library without requiring any generated code, using C++11 templates and simple declarations.

@@ -8,3 +10,3 @@

#include "Binding.h"
#include "nbind/Binding.h"

@@ -25,3 +27,3 @@ using namespace nbind;

var Point=require('./build/Release/example.node').Point;
var Point=require('bindings')('example').Point;

@@ -43,3 +45,3 @@ var a=new Point(1,2);

[The MIT License](https://raw.githubusercontent.com/jjrv/nbind/master/LICENSE)
[The MIT License](https://raw.githubusercontent.com/charto/nbind/master/LICENSE)
Copyright (c) 2014-2015 BusFaster Ltd

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc