Comparing version 0.3.2 to 0.4.1
{ | ||
"name": "noble-uwp", | ||
"version": "0.3.2", | ||
"version": "0.4.1", | ||
"description": "Noble (Node.js Bluetooth LE) with Windows 10 UWP bindings", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -8,14 +8,9 @@ # Noble (Node.js Bluetooth LE) for Windows 10 | ||
[finally improved the BLE support](https://blogs.windows.com/buildingapps/2017/01/13/new-bluetooth-features-in-creators-update-gatt-server-bluetooth-le). | ||
This project is an attempt to implement bindings for `noble` using that newly available | ||
This project is an implementation of bindings for `noble` using that newly available | ||
functionality in Windows 10. | ||
## System Requirements | ||
* Node.js v6 or later. (Node v4 might work, but is untested.) | ||
* Windows 10 build 10.0.15021 or later, currently available on the Windows Insider Preview Fast ring | ||
* Windows 10 SDK build 10.0.15021 or later, available from the | ||
[Windows Insider Preview SDK page](https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewSDK) | ||
* Note the SDK build number changes frequently during the preview phase. | ||
You may need to update the `WIN_SDK_VER` variable in `common.gypi` to refer | ||
to the SDK build number that is installed. Try to use an SDK build that matches your | ||
Windows 10 preview build. | ||
* Node.js v6 or later. | ||
* Windows 10 build 10.0.15063 or later | ||
* Windows 10 SDK build 10.0.15063 | ||
@@ -22,0 +17,0 @@ ## Usage |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.devices.bluetooth.advertisement", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Devices.Bluetooth.Advertisement UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -39,7 +39,8 @@ "os": [ | ||
"dependencies" : { | ||
"nan" : "latest" | ||
"nan" : "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
@@ -50,3 +51,12 @@ "homepage": "https://github.com/NodeRT/NodeRT", | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_devices_bluetooth_advertisement_{version}" | ||
} | ||
} |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.devices.bluetooth.genericattributeprofile", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Devices.Bluetooth.GenericAttributeProfile UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -70,7 +70,8 @@ "os": [ | ||
"dependencies" : { | ||
"nan" : "latest" | ||
"nan" : "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
@@ -81,3 +82,12 @@ "homepage": "https://github.com/NodeRT/NodeRT", | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_devices_bluetooth_genericattributeprofile_{version}" | ||
} | ||
} |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.devices.bluetooth", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Devices.Bluetooth UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"prepublish": "npm ls", | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -39,7 +40,8 @@ "os": [ | ||
"dependencies" : { | ||
"nan" : "latest" | ||
"nan" : "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
@@ -50,3 +52,12 @@ "homepage": "https://github.com/NodeRT/NodeRT", | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_devices_bluetooth_{version}" | ||
} | ||
} |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.devices.enumeration", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Devices.Enumeration UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -55,7 +55,8 @@ "os": [ | ||
"dependencies" : { | ||
"nan" : "latest" | ||
"nan" : "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
@@ -66,3 +67,12 @@ "homepage": "https://github.com/NodeRT/NodeRT", | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_devices_enumeration_{version}" | ||
} | ||
} |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.devices.radios", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Devices.Radios UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -26,7 +26,8 @@ "os": [ | ||
"dependencies" : { | ||
"nan" : "latest" | ||
"nan" : "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
@@ -37,3 +38,12 @@ "homepage": "https://github.com/NodeRT/NodeRT", | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_devices_radios_{version}" | ||
} | ||
} |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.foundation", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Foundation UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"scripts": { | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -37,15 +37,27 @@ "os": [ | ||
"Microsoft" | ||
], | ||
"dependencies" : { | ||
"nan" : "latest" | ||
], | ||
"dependencies": { | ||
"nan": "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
"homepage": "https://github.com/NodeRT/NodeRT", | ||
"author": "Generated by NodeRT", | ||
"contributors": ["nadavbar <nadavbar@gmail.com> (http://www.nadavos.com)"], | ||
"contributors": [ | ||
"nadavbar <nadavbar@gmail.com> (http://www.nadavos.com)" | ||
], | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_foundation_{version}" | ||
} | ||
} |
@@ -19,3 +19,3 @@ // Copyright (c) Microsoft Corporation | ||
} | ||
module.exports = require('../build/Release/binding.node'); | ||
module.exports = require('./binding/binding.node'); | ||
} | ||
@@ -22,0 +22,0 @@ catch(e) { |
{ | ||
"name": "windows.storage.streams", | ||
"version": "0.1.0", | ||
"version": "0.15063.0", | ||
"description": "Use the Windows.Storage.Streams UWP API directly from Node.js", | ||
"main": "lib/main.js", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild --msvs_version=2015" | ||
"scripts": { | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
}, | ||
@@ -47,15 +47,27 @@ "os": [ | ||
"Microsoft" | ||
], | ||
"dependencies" : { | ||
"nan" : "latest" | ||
], | ||
"dependencies": { | ||
"nan": "latest", | ||
"node-pre-gyp": "0.6.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/NodeRT/NodeRT.git" | ||
"url": "git://github.com/jasongin/noble-uwp.git" | ||
}, | ||
"homepage": "https://github.com/NodeRT/NodeRT", | ||
"author": "Generated by NodeRT", | ||
"contributors": ["nadavbar <nadavbar@gmail.com> (http://www.nadavos.com)"], | ||
"contributors": [ | ||
"nadavbar <nadavbar@gmail.com> (http://www.nadavos.com)" | ||
], | ||
"gypfile": true, | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"binary": { | ||
"module_name": "binding", | ||
"module_path": "./lib/binding/", | ||
"host": "https://github.com/jasongin/noble-uwp/releases/download/", | ||
"remote_path": "windows_storage_streams_{version}" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
3323615
147
65
8