Browse and test your LoopBack app's APIs
Go to file
Raymond Feng b4f91a57a2 Bump version 2014-01-13 13:42:14 -08:00
example Initial explorer 2013-11-05 11:16:59 -08:00
public Support custom basePath 2013-11-29 16:26:16 +01:00
test Reorder middleware to fix unit-test failures. 2013-12-09 11:44:46 +01:00
.gitignore Initial commit 2013-11-05 09:59:05 -08:00
LICENSE Initial commit 2013-11-05 09:59:05 -08:00
README.md README: mount REST at /api in the sample code 2013-12-09 18:12:30 +01:00
index.js Fix loading of loopback dependencies. 2013-12-09 11:37:38 +01:00
package.json Bump version 2014-01-13 13:42:14 -08:00

README.md

loopback-explorer

Browse and test your LoopBack app's APIs.

Basic Usage

Below is a simple LoopBack application. The explorer is mounted at /explorer.

var loopback = require('loopback');
var app = loopback();
var explorer = require('loopback-explorer');

var Product = loopback.Model.extend('product');
Product.attachTo(loopback.memory());
app.model(Product);

app.use('/api', loopback.rest());
app.use('/explorer', explorer(app, { basePath: '/api' }));

app.listen(3000);