This project hosts couple of utilities built using NodeWebkit, which will let you have a desktop application using JavaScript.
Utilities:
- Git Markdown Editor
- CSS Parser - counts the
# of Rules
and# of Selectors
in a CSS code
- Install Node JS
- Download/Clone this project
- Run
npm start
You should get a custom UI with editor.
-
Create a folder.
-
Install Node WebKit
- Command:
npm install nodewebkit
- or - for global installnpm install nodewebkit -g
(-g
stands for global)
- Command:
-
Install CSS
- Command:
npm install css
- Command:
-
Install jQuery
- Command:
npm install jquery
- Command:
-
Install Mark Down
- Command:
npm install markdown
- Command:
-
Create a
package.json
file in this folder.Code:
{ "name": "git-markdown-editor-nodewebkit" , "main": "index.html" , "description": "Git Markdown Editor NodeWebkit" , "scripts": { "start": "nodewebkit" } , "window": { "toolbar": false , "width": 800 , "height": 800 } }
-
Run
npm start