Socket
Book a DemoInstallSign in
Socket

node-ember-rest

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ember-rest

Tight integration between mongoose models and routes.

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

express-rest-ember

Automatically create REST endpoints based on your mongoose models. This is by no means limited to ember. The ember in the name means that it's compatible with Embers rest adapter out of the box.

var express = require('express');
var app = express();
var mongoose = require('mongoose');

mongoose.connect(...)

var rest = require('express-rest-ember');

rest.setup({mongoose: mongoose, resources: '/path/to/models' });

//
// Register all REST-ful routes
//
app.use('/api/myResource', rest.routes.myResource); // Your resource will now be avilable at http://host/api/myResource

//
// If you want to protect resources you can ofcourse do it using middleware
// (like passport)
//
app.use('/api/myProtectedResource', myAuthMiddleware, rest.routesmyProtectedResource);

app.listen(3000);

Look in the example folder for a full working example.

Models

All your models should be stored in the same directory (e.g. resources/).

A Model

module.exports = function (mongoose) {

    var PostSchema = new mongoose.Schema({
        title: { type: String, required: true },
        body: { type: String }
    });

    var model = mongoose.model('Post', PostSchema);

    //
    // For express-rest-ember to work you MUST
    // return an object containing model and Schema
    // properties...
    //
    return {
        model: model,
        Schema: PostSchema
    };
}

Notice that you must export it as a function where mongoose will be injected as the first argument.

Testing

Run the tests for a better understanding of how the routes work, as the output will give you a good hint.

Install mocha globally

$ npm install mocha -g

Run the tests

$ npm test

FAQs

Package last updated on 01 Oct 2014

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.