https://github.com/wahawaher/front-lib-template
Simplify and speed up the process of creating frontend libraries, plugins, etc..
https://github.com/wahawaher/front-lib-template
Last synced: 3 months ago
JSON representation
Simplify and speed up the process of creating frontend libraries, plugins, etc..
- Host: GitHub
- URL: https://github.com/wahawaher/front-lib-template
- Owner: WahaWaher
- Created: 2020-08-31T18:31:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T05:50:01.000Z (over 4 years ago)
- Last Synced: 2024-12-27T14:10:02.787Z (5 months ago)
- Language: JavaScript
- Size: 357 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frontend Library Template
Simplify and speed up the process of creating frontend libraries, plugins, etc..# Get started
#### 1. Clone
```bash
git clone https://github.com/WahaWaher/front-lib-template library-name
cd library-name
```#### 2. Install
```bash
yarn
```#### 3. Be sure to fill/edit package.json (fields: name, version, description, lib, etc.)
#### 4. Run once "first" script
```bash
yarn first # will replace strings, rename some files and clear some dirs
```
#### 5. Dev and Build!
```bash
yarn dev # run development server (by default url: http://localhost:3000, dir: './dev')
yarn build # make production build (by default dir: './build')
```