0.0.1 • Published 11 years ago
require-text v0.0.1
require-text
require() text files
Overview
- Useful in Node.JS environment, which can only require .js, .json and .node files.
- Resolves and loads the file from filename just like the standard Node.JS require - does relative path resolution, etc.
Installation
Install with npm:
$ npm install --save require-textAPI
var requireText = require('require-text');
var index = requireText('./index.html', require);
// Prints contents of ./index.html file, which resides
// in the same directory as this source code file.
console.log(index);Development
Checklist before releasing
- package.json version number bumped
release X.X.Xcommit created and tagged asX.X.Xnpm publish
0.0.1
11 years ago