Skip to content

Latest commit

 

History

History
51 lines (26 loc) · 748 Bytes

File metadata and controls

51 lines (26 loc) · 748 Bytes

Pre-requisites

  • Install Node for respective platform from https://nodejs.org/en/

  • Windows

    • Git Bash
  • MacOS

    To be updated. (Device Constraints)

  • Linux

    To be updated.

Steps

  1. Install all npm dependencies by running following command

    npm install
    

    Installing and compiling native node modules

    npm run native-dep
    
  2. Start Notes Application.

    • For PRODUCTION Mode

      • Bundling and building code

        npm run build
        

        Output files are generated in release/app/dist

      • Running Notes app

        npm start
        
    • For DEVELOPMENT Mode

      npm start dev
      

Linting code

npm run lint

Formatting code

npm run format