
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
© 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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.