0.0.1 • Published 11 years ago

node-edit v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

node-edit

Launch $EDITOR with a default set of text and allow the user to make changes. Strip out the comments and fire a callback with the new text, or false if the text has not changed.

Install

npm install node-edit

Instructions

var edit = require('node-edit');
edit("# Example\n# Commented lines will be stripped", function(newText) {
  console.log(newText);
});

This will output the files new contents, or false if they have not changed: Note: Comments are stripped.