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

30 lines
707 B
JavaScript
Raw Normal View History

// Copyright IBM Corp. 2013,2018. All Rights Reserved.
2016-05-03 22:50:21 +00:00
// Node module: loopback
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
'use strict';
const g = require('../../lib/globalize');
const loopback = require('../../');
const 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
const dataSource = app.dataSource('db', {adapter: 'memory'});
2013-05-24 14:59:23 +00:00
const 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}}');