FilePad is a file browser and editor built with node.js, coffeecript and nowpad
-
Install CoffeeScript
npm -g install coffee-script
-
Install FilePad
npm -g install filepad
-
Start filepad
filepad [directory path you would like to edit]
-
Open http://localhost:9573/ in your browser
-
With Node.js in JavaScript
// Include FilePad require('coffee-script'); filepad = require('filepad'); // Create a FilePad Instance myFilepad = filepad.createInstance({path: 'lib/public', port: '9573'});
-
With Node.js in CoffeeScript
# Include FilePad filepad = require 'filepad' # Create a FilePad Instance myFilepad = filepad.createInstance path: 'lib/public', port: '9573'
To learn more about FilePad visit its wiki here
-
v0.5 July 8, 2011
- Updated libraries
-
v0.4 May 23, 2011
- UI cleaning
-
v0.3 May 20, 2011
- Now supports multiple filepad isntances
-
v0.2 May 19, 2011
- Got file saving going
- Got file listings refreshing when files are added or deleted
- Added a login modal for the future
-
v0.1 May 18, 2011
- Initial commit
Licensed under the MIT License Copyright 2011 Benjamin Arthur Lupton