js-data-express
Generate Express.js-compatible route middleware for js-data models.
To get started, visit http://js-data.io.
import express from 'express'
import {mount, queryParser, Router} from 'js-data-express'
import {Container} from 'js-data'
const app = express()
const store = new Container()
const UserMapper = store.defineMapper('user')
const CommentMapper = store.defineMapper('comment')
Use mount()
// Mount store at "/"
mount(app, store)
// Mount store at "/api"
mount(app, store, '/api')
Adding as middleware
// Mount queryParser at "/"
app.use(queryParser)
// Mount store at "/"
app.use(new Router(store).router)
Links
- Quick start - Get started in 5 minutes
- Guides and Tutorials - Learn how to use JSData
js-data-express
Guide - Learn how to usejs-data-express
- API Reference Docs - Explore components, methods, options, etc.
- Community & Support - Find solutions and chat with the community
- General Contributing Guide - Give back and move the project forward
License
The MIT License (MIT)
Copyright (c) 2014-2016 js-data-express project authors