npm.io
0.0.1 • Published 12 years ago

require-text

Licence
MIT
Version
0.0.1
Deps
0
Vulns
0
Weekly
0
Stars
5

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-text

API

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.X commit created and tagged as X.X.X
  • npm publish

Keywords