Client Web Storage Project Examples

Demonstrates how to use the client-web-storage package with different UI frameworks.

Setup

1 - Run Server

There is a server which handles the API requests which the projects need.

Open on terminal tab and run the following commands:

# from the project root
cd server

npm install

npm start # runs server on port 4500

2 - Run Projects

The same todo app is created in:

  • React
  • Angular

In a separate terminal tab run the following commands:

# from the project root
cd PROJECT_FOLDER_NAME_YOU_WANT # react | angular

npm install

npm start