1.8.1 • Published 13 years ago
flatiron-jquery v1.8.1
flatiron-jquery
Serve jquery static file in flatiron
Installation
npm install flatiron-jqueryUsage
At its core flatiron-jquery is a broadway-compatible plugin which can be used by any flatiron http application with a static serving plugin
var flatiron = require('flatiron'),
path = require('path'),
app = flatiron.app;
app.config.file({ file: path.join(__dirname, 'config', 'config.json') });
app.use(flatiron.plugins.http);
app.use(flatiron.plugins.ecstatic);
app.use(require('flatiron-jquery'));
app.router.get('/', function () {
this.res.json({ 'hello': 'world' })
});
app.start(3000);Now start the server with
node app.jsand the following url will serve jquery.min.js v1.7.2
http://localhost:3000/js/jquery.min.jsNOTE
The version of this package is equal to the version of jquery served.
If you like this project, please watch this and follow me.
Testing
npm testContributors
Here is a list of Contributors
TODO
I accept pull requests and guarantee a reply back within a day
License
MIT/X11
Bug Reports
Report here. Guaranteed reply within a day.
Contact
Pavan Kumar Sunkara (pavan.sss1991@gmail.com)