You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

node-addon-api

Package Overview
Dependencies
Maintainers
5
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.3.0 to 5.0.0

28

package.json

@@ -99,2 +99,10 @@ {

{
"name": "Eric Bickle",
"url": "https://github.com/ebickle"
},
{
"name": "extremeheat",
"url": "https://github.com/extremeheat"
},
{
"name": "Ferdinand Holzer",

@@ -104,6 +112,2 @@ "url": "https://github.com/fholzer"

{
"name": "Eric Bickle",
"url": "https://github.com/ebickle"
},
{
"name": "Gabriel Schulhof",

@@ -273,2 +277,6 @@ "url": "https://github.com/gabrielschulhof"

{
"name": "rgerd",
"url": "https://github.com/rgerd"
},
{
"name": "Rolf Timmermans",

@@ -326,7 +334,15 @@ "url": "https://github.com/rolftimmermans"

{
"name": "Vladimir Morozov",
"url": "https://github.com/vmoroz"
},
{
"name": "WenheLI",
"url": "https://github.com/WenheLI"
},
{
"name": "Xuguang Mei",
"url": "https://github.com/meixg"
},
{
"name": "Yohei Kishimoto",

@@ -401,4 +417,4 @@ "url": "https://github.com/morokosi"

"pre-commit": "lint",
"version": "4.3.0",
"version": "5.0.0",
"support": true
}

@@ -13,3 +13,3 @@ NOTE: The default branch has been renamed!

# **node-addon-api module**
This module contains **header-only C++ wrapper classes** which simplify
This module contains **header-only C++ wrapper classes** which simplify
the use of the C based [Node-API](https://nodejs.org/dist/latest/docs/api/n-api.html)

@@ -74,3 +74,3 @@ provided by Node.js when using C++. It provides a C++ object model

## **Current version: 4.3.0**
## **Current version: 5.0.0**

@@ -88,3 +88,3 @@ (See [CHANGELOG.md](CHANGELOG.md) for complete Changelog)

The oldest Node.js version supported by the current version of node-addon-api is Node.js 12.x.
The oldest Node.js version supported by the current version of node-addon-api is Node.js 14.x.

@@ -91,0 +91,0 @@ ## Setup

@@ -23,3 +23,6 @@ #!/usr/bin/env node

const clangFormatPath = path.dirname(require.resolve('clang-format'));
const options = ['--binary=node_modules/.bin/clang-format', '--style=file'];
const binary = process.platform === 'win32'
? 'node_modules\\.bin\\clang-format.cmd'
: 'node_modules/.bin/clang-format';
const options = ['--binary=' + binary, '--style=file'];
if (fix) {

@@ -26,0 +29,0 @@ options.push(FORMAT_START);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc