├── .gitignore ├── Details └── useraccount.json ├── README.md ├── Routes ├── Route.js └── account.js ├── app.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Details/useraccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uma-victor1/CRUD-app-with-JSON-file/HEAD/Details/useraccount.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uma-victor1/CRUD-app-with-JSON-file/HEAD/README.md -------------------------------------------------------------------------------- /Routes/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uma-victor1/CRUD-app-with-JSON-file/HEAD/Routes/Route.js -------------------------------------------------------------------------------- /Routes/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uma-victor1/CRUD-app-with-JSON-file/HEAD/Routes/account.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uma-victor1/CRUD-app-with-JSON-file/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uma-victor1/CRUD-app-with-JSON-file/HEAD/package.json --------------------------------------------------------------------------------