filepad

0.5.0 • Public • Published

FilePad

FilePad is a file browser and editor built with node.js, coffeecript and nowpad

Installing

  1. Install Node.js

  2. Install CoffeeScript

     npm -g install coffee-script
    
  3. Install FilePad

     npm -g install filepad
    

Using

  1. Start filepad

     filepad [directory path you would like to edit]
    
  2. Open http://localhost:9573/ in your browser

Implementing

  • 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'
     
     

Learning

To learn more about FilePad visit its wiki here

History

  • 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

License

Licensed under the MIT License Copyright 2011 Benjamin Arthur Lupton

Readme

Keywords

none

Package Sidebar

Install

npm i filepad

Weekly Downloads

3

Version

0.5.0

License

none

Last publish

Collaborators

  • bevryme