Transition from SFJS to SNJS

This commit is contained in:
Mo Bitar
2019-12-13 12:11:19 -06:00
parent 010d2793b1
commit 68fbd745d5
19 changed files with 14142 additions and 28698 deletions

8
tests.js Normal file
View File

@@ -0,0 +1,8 @@
// Used for running mocha tests
var connect = require('connect');
var serveStatic = require('serve-static');
var port = 9002;
connect().use(serveStatic(__dirname)).listen(port, function(){
console.log(`Server running on ${port}...`);
});