Example markdown editor built using EVWT
evwt-example-markdown-editor
An example EVWT app to edit markdown files with a live preview.
This app also serves as the official testbed of EVWT.
This project was created with:
npm install -g @vue/cli
vue create evwt-example-markdown-editor
cd evwt-example-markdown-editor
vue add electron-builder
npm install evwt
Tests were added with these commands:
npm i spectron mocha -D
mkdir test
touch test/spec.js
Then this was added to package.json:
"scripts": {
"test": "mocha"
}
Run tests with:
npm run test