Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
© Raw Engineering, Inc (www.raweng.com) 2013, Licensed under the MIT-LICENSE
A Javascript SDK for built.io service for node.js (0.6.x and up). Hides most of the complexity of creating, maintaining built.io objects and sessions.
For more information visit http://built.io and http://manage.built.io .
var Built = require('built');
var application_api_key = 'YOUR APPLICATION API KEY' ;
var application_uid = 'YOUR APPLICATION UID' ;
Built.initialize(application_api_key, application_uid); // init built SDK using application_api_key and application_uid
var query = new Built.Query('employee'/*class_uid*/); // create new built Query Object
query.greaterThan('age', 30); // add query
query.exec(/* execute query */)
.success(function(data){
console.log(data);
})
.error(function(err){
console.log(err);
});
var employee = new Built.Object('employee'/*class_uid*/);
employee.set({ /* set attributes in newly created object */
name:'jack',
age:32
});
employee.set('gender', 'male'); // set attribute using key, value type
employee.save()
.success(function(data){
/* object saved */
})
.error(function(err){
/* oops error */
});
npm install built --save
FAQs
built.io JavaScript SDK
The npm package built receives a total of 15 weekly downloads. As such, built popularity was classified as not popular.
We found that built demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.