0.2.0 • Published 10 years ago

api-version v0.2.0

Weekly downloads
55
License
-
Repository
github
Last release
10 years ago

api methods

Wrapper for express routing methods to help with versioning apis

##Usage

var apim = require('api-methods');
var app = express();
var api = apim.version(app, '/api', 'v1');
var api2 = apim.version(app, '/api', 'v2');

api.get('/user', function(){

});

api.post('/user', function(){

});

api2.get('/user', function(){

});

Since the routes were added using api instead of app, the routes turn out to be

/api/v1/user

and

/api/v2/user
0.2.0

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.5

11 years ago

0.0.1

11 years ago