https://github.com/mobily-enterprises/scaffoldizer
https://github.com/mobily-enterprises/scaffoldizer
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mobily-enterprises/scaffoldizer
- Owner: mobily-enterprises
- License: gpl-3.0
- Created: 2020-08-16T22:25:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T01:52:02.000Z (4 months ago)
- Last Synced: 2025-04-12T06:05:34.183Z (2 months ago)
- Language: JavaScript
- Size: 178 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scaffoldizer
Scaffoldizer allows you to write application scaffolds in the easiest possible way.
A "scaffold" can be a purposefully crafted NPM module, or a directory.## Installation
Install Scaffoldizer in the global space:
````
$ npm i -g scaffoldizer
````## Basic use
````
$ mkdir example-app
$ cd example-app
$ npm init
$ # ... answer basic questions
$ scaffoldizer add js-kit .
````This command will enrich the current project (`.`) with the `js-kit` scaffold, which will enrich it.
## Get your hands dirty
There is no documentation yet. However, by looking at the "example" directory in this project will give you a good idea on how to create your own scaffolds.