Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dozjs/doz-cli
Command line interface for Doz
https://github.com/dozjs/doz-cli
cli doz
Last synced: about 1 month ago
JSON representation
Command line interface for Doz
- Host: GitHub
- URL: https://github.com/dozjs/doz-cli
- Owner: dozjs
- Created: 2018-07-14T21:19:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-27T18:24:25.000Z (over 2 years ago)
- Last Synced: 2024-11-28T18:48:17.226Z (about 1 month ago)
- Topics: cli, doz
- Language: JavaScript
- Homepage:
- Size: 64.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# doz-cli
Command line interface for Doz.
With this tool you can create:- Doz app
- Doz component
- Doz Electron app
- Doz plugin### Create an app
```
$ npx doz-cli app your-app-name
```Start to developing
```
$ cd your-app-name
$ npm start
```Editing `client/app.js`
### Create a component
```
$ npx doz-cli component your-component-name
```Start to developing
```
$ cd your-component-name
$ npm start
```Write your component inside `src/` folder
### Create an Electron app
```
$ npx doz-cli electron your-app-name
```Start to developing
```
$ cd your-app-name
$ npm start
```Editing `client/app.js`
### Create a plugin
```
$ npx doz-cli plugin your-plugin-name
```Start to developing
```
$ cd your-plugin-name
$ npm start
```Write your plugin inside `src/` folder
## Changelog
You can view the changelog here## License
doz-cli is open-sourced software licensed under the MIT license## Author
Fabio Ricali