loopback/example/simple-data-source/app.js

30 lines
697 B
JavaScript
Raw Normal View History

2016-05-03 22:50:21 +00:00
// Copyright IBM Corp. 2013,2016. All Rights Reserved.
// Node module: loopback
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
'use strict';
2016-09-16 19:31:48 +00:00
var g = require('../../lib/globalize');
2013-07-16 17:49:25 +00:00
var loopback = require('../../');
var app = loopback();
2013-05-24 14:59:23 +00:00
2013-07-16 17:49:25 +00:00
app.use(loopback.rest());
2013-05-24 14:59:23 +00:00
var dataSource = app.dataSource('db', {adapter: 'memory'});
2013-05-24 14:59:23 +00:00
var Color = dataSource.define('color', {
'name': String,
2013-05-24 14:59:23 +00:00
});
Color.create({name: 'red'});
Color.create({name: 'green'});
Color.create({name: 'blue'});
2013-05-24 14:59:23 +00:00
Color.all(function() {
2013-05-24 14:59:23 +00:00
console.log(arguments);
});
app.listen(3000);
2016-06-07 14:48:28 +00:00
g.log('a list of colors is available at {{http://localhost:3000/colors}}');