qut
v0.1.3
Published
Qut[Cute] is a yet another browser based editor <3
Downloads
4
Readme
A yet another browser based editor, named Qut[Cute].
# install it
$ npm install --global qut
# use it
$ qut README.md
And you'll see a browser editor on http://localhost:5000
Development
$ git clone https://github.com/saltyshiomix/qut.git
# install cli dependencies
$ cd qut
$ yarn # or `npm install`
# install client dependencies
$ cd editor
$ yarn # or `npm install`
Run as a development mode
Before start a qut command, start client development process:
$ cd editor
$ yarn dev # or `npm run dev`
Then, start the qut command:
# At the qut root...
$ yarn dev # or `npm run dev`
Run as a production mode
# At the qut root, run a build command
$ yarn build # or `npm run build`
# Run the qut command
$ node cli.js [file]