Socket
Book a DemoInstallSign in
Socket

brainy-api

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brainy-api

create a REST API from your Backbone models and collections

0.0.3
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

brainy-api

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.

install

$ npm install brainy-api

use

using the library

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.

running the built-in server

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.

methods

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).

models

when given a model, brainy-api will create methods for reading or creating models.

  • GET /:urlRoot/:id
  • POST /:urlRoot

collections

when given a collection, brainy-api will create a method for reading that collection.

  • GET /:url

todo

  • the api's external interface should act as middleware, while ideally removing the necessity to pass in the app object as an argument

Keywords

brainy

FAQs

Package last updated on 24 Feb 2013

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.