1.0.7 • Published 5 years ago
dxl-builder v1.0.7
npm-dxl-builder
Double XL builder: a one size fits all 👕project builder🔧.
💬Announcement
preparing. don't use yet.
Philosophy
One-size-fits-all
- This project is wanting to assist as many languages and as many kinds of projects as possible(There can be editor-theme projects without any code, etc).
- This project aims at providing functionalities by one package, while perfectly staying away from your work-flow. You only need one builder instance, and everything else can be guided by your editor's javascript autocompletion.
Staying sequential
- Node.js provides variety of file I/O methods providing both synchronous and asynchronous I/O maneuvers. This is very useful, yet you might implement some bugs by its asynchronous method naming(You always need to choose method with Sync suffix for synchronous I/O). This package always tries to stay sequential with only calling methods trailed by "Sync" suffix of "fs" module.
Simplicity
- This project always tries to stay simple.
Nature of this project
- Scripts in this package were naturally born while I was working on other small personal projects. However, I decided to publish the scripts as one package for convenience.
Requirements
Installation
Install it as devDependencies. Type following at your project root.
npm install dxl-builder --save-dev
Once installed, all you got to do is write your own build script and require this package in there.
e.g.:
var dxlb = require("dxl-builder");
Documentation
preparing.
Sample usage
preparing.