loopback-component-explorer/example/simple.js

27 lines
800 B
JavaScript
Raw Normal View History

2016-05-06 00:10:55 +00:00
// Copyright IBM Corp. 2013,2016. All Rights Reserved.
// Node module: loopback-component-explorer
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
2016-07-27 22:45:24 +00:00
var g = require('strong-globalize')();
2013-11-05 19:16:59 +00:00
var loopback = require('loopback');
var app = loopback();
var explorer = require('../');
var port = 3000;
2013-11-05 19:16:59 +00:00
var Product = loopback.PersistedModel.extend('product', {
2016-04-22 21:09:48 +00:00
foo: { type: 'string', required: true },
bar: 'string',
2016-04-22 21:09:48 +00:00
aNum: { type: 'number', min: 1, max: 10, required: true, default: 5 },
});
2013-11-05 19:16:59 +00:00
Product.attachTo(loopback.memory());
app.model(Product);
var apiPath = '/api';
explorer(app, { basePath: apiPath });
app.use(apiPath, loopback.rest());
2016-07-27 22:45:24 +00:00
g.log('{{Explorer}} mounted at {{http://localhost:%s/explorer}}', port);
2013-11-05 19:16:59 +00:00
app.listen(port);