Skip to content
This repository has been archived by the owner on Feb 27, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (22 loc) · 712 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 712 Bytes

simple-node-server

A simple fast node http server. More a toolkit than a platform.

Goals

  • easy to do common things.
  • possible to do uncommon things.
  • small enough to rewrite easily

So far

  • File Serving
  • Auto indexing
  • Directory indexing
  • ejs parser
  • a crappy router

Up Next

  • Configurable logging statements (dumping everything now, it's perty noisy)
  • Custom error pages
  • More eventedness/AOP/etc. A way for plugins to alter the behavior of the server, without necessarily being one of the actions in the chain
  • some scripts to wrap up the core server, and do stuff like start, stop, point &2 at a log file, etc.
  • a non-crappy url-to-function router
  • testing
  • Documentation!