npm install -g fuqzed
Node.js port of the fuqit library, a stupid simple web "framework". Drop files into a directory and everything just works (shouts out to PHP).
Files are either a .js
module exporting a function (req, res)
or an EJS template (.js|html
). Everything else is served as a static file.
Just fuqzed
inside your target directory. See /example
.
fuqzed [port]
If you want to keep fuqzed
local to your project:
npm install fuqzed
./node_modules/.bin/fuqzed
Or add scripts: { "fuqzed": "fuqzed" }
to your package.json
and use npm run-script fuqzed
.