1.2.1 • Published 8 years ago

bundledown v1.2.1

Weekly downloads
3
License
BSD-2-Clause
Repository
github
Last release
8 years ago

bundledown

recursively bundle arbitrary files!!!!

installation

npm install -g bundledown

usage

make a markdown file:

# my cool markdown document

lets bundle some markdown

@include('./src/other-markdown-file.md')

nice

now just

bundledown index.md -o bundle.md

or, in js,

var bundledown = require('bundledown')
var filePath = require('path').join(__dirname, 'myfile.md')
var readStream = require('fs').createReadStream(filePath)

bundledown(readStream).pipe(process.stdout)

api

bundledown(path)

recursively bundles the file at path. returns a stream.

license

BSD

1.2.1

8 years ago

1.2.0

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago