https://github.com/webmiddle/webmiddle-starter-app
webmiddle starter app
https://github.com/webmiddle/webmiddle-starter-app
getting-started starter-kit
Last synced: 10 months ago
JSON representation
webmiddle starter app
- Host: GitHub
- URL: https://github.com/webmiddle/webmiddle-starter-app
- Owner: webmiddle
- License: mit
- Created: 2018-04-13T17:59:06.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T19:23:19.000Z (over 7 years ago)
- Last Synced: 2025-01-17T01:09:45.919Z (over 1 year ago)
- Topics: getting-started, starter-kit
- Language: JavaScript
- Homepage: https://webmiddle.github.io/
- Size: 825 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webmiddle-starter-app
> Starter app for webmiddle
## Commands
Install dependencies
```sh
yarn
```
Build
```sh
yarn build
```
Test
```sh
yarn test
```
For development, automatically rebuild and restart server on changes:
```sh
yarn start
```
For development, `start` and launch `webmiddle-devtools`:
```sh
yarn start:devtools
```
## Adding Browser
The `Browser` component isn't included by default as it greatly increases the install time,
since it requires a compatible verison of Chromium that is downloaded during installation.
If you need it, type the following
```bash
yarn add webmiddle-component-browser
```
## Working with linked webmiddle
Assuming you have cloned this repo as a submodule with https://github.com/webmiddle/webmiddle-all
Before installing dependencies with `yarn`, run the following to link the local webmiddle packages.
```sh
chmod +x link.sh
./link.sh
```