loopback/example/client-server/server.js

31 lines
781 B
JavaScript
Raw Normal View History

2016-05-03 22:50:21 +00:00
// Copyright IBM Corp. 2014,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';
2014-02-19 19:44:16 +00:00
var loopback = require('../../');
var server = module.exports = loopback();
var CartItem = require('./models').CartItem;
var memory = loopback.createDataSource({
connector: loopback.Memory,
2014-02-19 19:44:16 +00:00
});
server.use(loopback.rest());
server.model(CartItem);
CartItem.attachTo(memory);
// test data
2014-02-20 01:09:36 +00:00
CartItem.create([
{item: 'red hat', qty: 6, price: 19.99, cartId: 1},
{item: 'green shirt', qty: 1, price: 14.99, cartId: 1},
{item: 'orange pants', qty: 58, price: 9.99, cartId: 1},
2014-02-20 01:09:36 +00:00
]);
2014-02-19 19:44:16 +00:00
2014-02-20 01:09:36 +00:00
CartItem.sum(1, function(err, total) {
console.log(total);
});
2014-02-19 19:44:16 +00:00
server.listen(3000);