Note taking Web app.
- clone the repo
- npm i
- npm run start
npm run test
You can use the following debug configuration for vscode.
Put this in your launch.json config file :
{
"configurations": [
{
"name": "Launch Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}
``