Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsjonq/prestart
🔑 A tiny tool to make Javascript development a little more delightful
https://github.com/itsjonq/prestart
checker dependencies installer npm prestart yarn
Last synced: 2 months ago
JSON representation
🔑 A tiny tool to make Javascript development a little more delightful
- Host: GitHub
- URL: https://github.com/itsjonq/prestart
- Owner: ItsJonQ
- License: mit
- Created: 2019-10-11T02:37:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:35:19.000Z (about 2 years ago)
- Last Synced: 2023-10-20T20:29:53.618Z (over 1 year ago)
- Topics: checker, dependencies, installer, npm, prestart, yarn
- Language: JavaScript
- Homepage:
- Size: 315 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🔑 Prestart
> A tiny tool to make Javascript development a little more delightful
Prestart is a tool can hook into `npm prestart` to help setup your Javascript development workflow. The main feature is that it will automatically check and install any missing dependencies for you.
```
PreStartProject details
--------------------------------------------
node version 12.9.1
git branch master
email [email protected]
--------------------------------------------✔ [1/2] 🔌 Checking connection...
✔ [2/2] 🚚 Fetching packages...Success!
✨ Have fun developing!
```## Installation
```
npm install --save-dev @itsjonq/prestart
```## Usage
Add `@itsjonq/prestart` to your `prestart` script in your project's `package.json`.
```
"scripts": {
...
"prestart": "prestart",
...
},
```