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: 10 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:35:19.000Z (over 3 years ago)
- Last Synced: 2025-03-24T09:38:30.226Z (over 1 year ago)
- Topics: checker, dependencies, installer, npm, prestart, yarn
- Language: JavaScript
- Homepage:
- Size: 315 KB
- Stars: 4
- Watchers: 0
- 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.
```
PreStart
Project details
--------------------------------------------
node version 12.9.1
git branch master
email name@email.com
--------------------------------------------
✔ [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",
...
},
```