Skip to content
This repository has been archived by the owner on Aug 18, 2019. It is now read-only.

bevry-archive/filepad

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published