Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@builder.io/sdk
Advanced tools
This SDK is largely a wrapper over our [Content API](https://www.builder.io/c/docs/content-api)
This SDK is largely a wrapper over our Content API
import { builder } from '@builder.io/sdk';
builder.init(YOUR_KEY);
// Optional custom targeting
builder.setUserAttributes({
userIsLoggedIn: true,
whateverKey: 'whatever value',
});
builder
.get(YOUR_MODEL_NAME, {
// Optional custom query
query: {
'data.customField.$gt': 100,
},
})
.promise()
.then(({ data }) => {
// Do something with the data
});
// The options that you can send to builder.get and builder.getAll
// are defined here: https://forum.builder.io/t/what-are-the-options-for-the-methods-builder-get-and-builder-getall/1036
builder
.getAll(YOUR_MODEL_NAME, {
limit: 10,
})
.then(results => {
// Do something with the results
});
// Turn of cookies/tracking
builder.canTrack = false;
View all options for builder.get
here
Learn more about how to use the Builder core SDK:
FAQs
This SDK is largely a wrapper over our [Content API](https://www.builder.io/c/docs/content-api)
The npm package @builder.io/sdk receives a total of 26,262 weekly downloads. As such, @builder.io/sdk popularity was classified as popular.
We found that @builder.io/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.