
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
brainy-api can create a RESTful api by simply analyzing Backbone models and collections. it can be included in your Express application, or you can run it's built-in server.
$ npm install brainy-api
brainy-api is a function which accepts two arguments: a reference to your Express application, and an array of Backbone models and collections. the models and collections are used to infer information about what APIs to build, and the app object is required to configure the actual routes.
require([
'express',
'backbone',
'brainy-sync',
'brainy-api'
], function(express, Backbone, Sync, Api) {
var app = express();
Backbone.sync = Sync({
host: '127.0.0.1',
port: 27017,
name: 'brainy-api'
});
var User = Backbone.Model.extend({
urlRoot: '/users'
});
Api(app, [User])
app.listen(80);
});
important: the brainy-api library does not modify the behavior of Backbone.sync. this means you are responsible for overriding Backbone.sync with a server supported method before initializing brainy-api. for example, the built-in server (below) overrides sync for you, using brainy-sync.
a built-in server is included which accepts a path to a directory of models and collections and creates a standalone REST server.
$ brainy-api --paths.resources=brainy-demo/src/js/resources
this will start a server exposing the http API methods (below). brainy-api accepts configuration options to describe the http server, the MongoDB connection, and resources directory. the default configuration looks like this:
{
http: {
port: 80
},
paths: {
resources: null
},
db: {
host: '127.0.0.1',
port: 27017,
name: 'brainy-api'
}
}
brainy-api uses nconf (and by proxy optimist) to parse command line options. see optimist documentation for more information on overriding configuration. see the paths.resources
example for reference.
brainy-api uses a resource's url() to determine which endpoint each resource should be exposed by. this means setting your models urlRoot
to /users
will expose that model's methods at /users
. the methods it exposes are inferred based on the resources type (model or collection).
when given a model, brainy-api will create methods for reading or creating models.
when given a collection, brainy-api will create a method for reading that collection.
FAQs
create a REST API from your Backbone models and collections
The npm package brainy-api receives a total of 0 weekly downloads. As such, brainy-api popularity was classified as not popular.
We found that brainy-api 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.