# Getting Started


Use our getting_started/react project to bootstrap your new idea. All demo content are stripped down.

You can follow this documentation guide to include a other various components. But you can also refer up the demo source located in demo/react/

First follow react documentation on building and deploying To run development server, navigate to demo/react folder and run the command on your command line

npm install
npm start

To deploy your app for production, navigate to demo/angular folder and run the command on your command line

npm run build

Once your server is up and running navigate to the following URLs


# Common Issues

# Error in rxjs module

ERROR in node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected.

  • Remove the node_modules folder from your project
  • Go to package.json
  • Change rxjs version to "rxjs": "6.3.3"
  • Go to console and run npm install again
  • And then run npm start

# Invalid or unexpected token

After running npm start command, If you get this error Invalid or unexpected token

  • Delete package-lock.json
  • Go to console and run npm install again
  • And then run npm start