Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaid/new-project-cli
Opinionated command line tool that creates a new git repository for an npm package.
https://github.com/jaid/new-project-cli
automation cli git github github-api new-project tool util utility
Last synced: 11 days ago
JSON representation
Opinionated command line tool that creates a new git repository for an npm package.
- Host: GitHub
- URL: https://github.com/jaid/new-project-cli
- Owner: Jaid
- License: mit
- Created: 2019-07-05T14:36:27.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T08:32:23.000Z (almost 2 years ago)
- Last Synced: 2024-12-01T20:46:03.844Z (about 1 month ago)
- Topics: automation, cli, git, github, github-api, new-project, tool, util, utility
- Language: JavaScript
- Homepage: https://github.com/Jaid/new-project-cli
- Size: 6.94 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license.txt
Awesome Lists containing this project
README
# new-project-cli
**Opinionated command line tool that creates a new git repository for an npm package.**
#### Opinionated
This project is tailored to my personal needs and workflows and therefore highly opinionated. Feel free to use it or get inspired by it, but please do not get frustrated if you come across weird features or have difficulties integrating it in your own ecosystem.
## Installation
```bash
npm install --global new-project-cli@^3.1.0
``````bash
yarn global add new-project-cli@^3.1.0
```
(if [configured properly](https://help.github.com/en/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages))```bash
npm install --global @jaid/new-project-cli@^3.1.0
```## CLI Usage
After installing package `new-project-cli` globally, you can use its command line interface.
```bash
new-project-cli my-new-package --description "Description of package." --template epoch-seconds
```
For usage instructions:
```bash
new-project-cli --help
```## Development
Setting up:
```bash
git clone [email protected]:jaid/new-project-cli.git
cd new-project-cli
npm install
```
Testing:
```bash
npm run test:dev
```
Testing in production environment:
```bash
npm run test
```## License
[MIT License](https://raw.githubusercontent.com/jaid/new-project-cli/master/license.txt)
Copyright © 2020, Jaid \ (https://github.com/jaid)