-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b3c62d
commit 244a880
Showing
4 changed files
with
61 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
node_modules/ | ||
dist/local.js | ||
*/local.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Node JS development server for Vali Admin | ||
|
||
var http = require("http"), | ||
url = require("url"), | ||
path = require("path"), | ||
fs = require("fs") | ||
port = process.argv[2] || 8888; | ||
|
||
http.createServer(function(request, response) { | ||
var uri = url.parse(request.url).pathname, | ||
filename = path.join(process.cwd(), 'docs', uri); | ||
|
||
var extname = path.extname(filename); | ||
var contentType = 'text/html'; | ||
|
||
switch (extname) { | ||
case '.js': contentType = 'text/javascript'; break; | ||
case '.css': contentType = 'text/css'; break; | ||
case '.ico': contentType = 'image/x-icon'; break; | ||
case '.svg': contentType = 'image/svg+xml'; break; | ||
} | ||
|
||
fs.exists(filename, function(exists) { | ||
if(!exists) { | ||
response.writeHead(404, {"Content-Type": "text/plain"}); | ||
response.write("404 Not Found\n"); | ||
response.end(); | ||
return; | ||
} | ||
|
||
if (fs.statSync(filename).isDirectory()) filename += '/index.html'; | ||
|
||
fs.readFile(filename, "binary", function(err, file) { | ||
if(err) { | ||
response.writeHead(500, {"Content-Type": "text/plain"}); | ||
response.write(err + "\n"); | ||
response.end(); | ||
return; | ||
} | ||
response.writeHead(200, {'Content-Type': contentType}); | ||
response.write(file, "binary"); | ||
response.end(); | ||
}); | ||
}); | ||
}).listen(parseInt(port, 10)); | ||
|
||
console.log("Server is running on http://localhost:" + port ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters