
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
@wishcore/wish-sdk
Advanced tools
A native node.js plugin for building Wish applications. Currently working with Linux x86_64 and nodejs v6.x only. To get it working you need to run a Wish Core on the same host.
npm install @wishcore/wish-sdk
var WishApp = require('wish-sdk').WishApp;
function App() {
var app = new WishApp({
name: process.env.SID || 'MyApp',
corePort: parseInt(process.env.CORE) || 9094,
protocols: ['test'] });
app.on('ready', (ready) => {
app.request('identity.create', ['John Doe'], (err, data) => {
if (err && data.code === 304) { return console.log('Using existing identity'); }
console.log('Identity created:', err, data);
});
});
app.on('online', (peer) => {
app.request('services.send', [peer, new Buffer('Permissionless innovation!')], (err, data) => {
// sent or not?
});
});
app.on('frame', (peer, data) => {
app.request('identity.get', [peer.ruid], function(err, user) {
console.log(user.alias, 'says:', data.toString());
});
});
}
var app = new App();
FAQs
Wish API for node. Used for building Wish Apps.
The npm package @wishcore/wish-sdk receives a total of 133 weekly downloads. As such, @wishcore/wish-sdk popularity was classified as not popular.
We found that @wishcore/wish-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies