Skip to content

Restful JSON API, with built-in ORM, account management and caching

License

Notifications You must be signed in to change notification settings

southbite/restack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

restack

NOTE: This solution is not completed yet, we have only built the tests and stubb code.

Restful JSON API built on top of Node and Express, with built-in ORM, account management and caching

Request flow

To run the tests, download the project, in the root folder of the project run: node test/restack_test

To run the restack server, create a file and execute using node:

	restack = require('./lib/restack');
	
	restack.initialize({}, function(e){
	  
		if (!e)
		{
			restack.start(function(e){
				if (e)
					console.log('restack failed to start: ' + e);
				else
					console.log('restack started successfully');
			});
		}
		else
			console.log('restack failed to initialize: ' + e);
		
	});

About

Restful JSON API, with built-in ORM, account management and caching

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published