https://github.com/christiankienle/vueplay
Create Vue playgrounds in seconds
https://github.com/christiankienle/vueplay
cli vuejs
Last synced: 8 months ago
JSON representation
Create Vue playgrounds in seconds
- Host: GitHub
- URL: https://github.com/christiankienle/vueplay
- Owner: ChristianKienle
- License: mit
- Created: 2019-03-11T18:22:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T15:08:01.000Z (over 3 years ago)
- Last Synced: 2025-02-03T06:16:31.863Z (over 1 year ago)
- Topics: cli, vuejs
- Language: JavaScript
- Homepage:
- Size: 6.75 MB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 66
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vueplay
*vueplay* allows you to get a Vue playground up an running in seconds.
**Run** *vueplay* and this happens:
- A simple *Vue* project is created (in a **temporary and unique** director).
- The project opens in Visual Studio Codes.
- Vue is told to serve the project.
## Installation
```console
$ npm i -g @vue/cli-service-global
$ npm i -g @ckienle/vueplay
```
*vueplay* requires `@vue/cli-service-global` to be installed globally. Otherwise it will not work.
## Running
```console
$ vueplay
```
## Current State
*vueplay* is currently tailored to **my personal** needs. This means that there is not way to configure *vueplay* in any way. Running *vueplay* gives you:
- A very simple Vue project in a **temporary & unique** directory with the following files:
- `App.vue`: Entry point of the whole playground.
- `HelloWorld.vue`: A simple component which is used by `App.vue`.
- `package.json`: Simply contains a `start`-script which runs `vue serve App.vue`
- `.vscode/`: A Visual Studio Code configuration with a simple *Run*-action.
- After the playground has been created *vueplay* automatically
- launches `vue serve App.vue` and
- opens the playground in Visual Studio Code