https://github.com/vimaec/vim-web-demo
https://github.com/vimaec/vim-web-demo
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/vimaec/vim-web-demo
- Owner: vimaec
- License: mit
- Created: 2021-11-10T15:07:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-20T23:10:25.000Z (over 1 year ago)
- Last Synced: 2025-02-21T00:31:40.352Z (over 1 year ago)
- Language: TypeScript
- Size: 27.4 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# VIM Web Demo App
This repository demonstrates how to load and use the VIM Web NPM package.
## Setup
```bash
# check out this repository
npm install
npm run dev
# Open your browser at http://localhost:3000
# By default, it should load a VIM file from a hard-coded URL.
```
## Tinkering
The entry point of the application is under `src/main.tsx`.
## Release
```bash
# Increment the version number
npm run replace-version
# Build
npm run build
# Test the dev build
npm run serve-dev
# Build the release version
npm run release
# ...commit to your branch, make a PR into the main branch, merge.
```