Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/masumkhan081/pharmacy-mgmt-backend
rest-api based back-end for a react-tailwind based front-end to build a drugs information system that holds drugs, generics, groups, formulation, strength with actions like add, edit-update, search, delete, paginated-tabular-view on it.
https://github.com/masumkhan081/pharmacy-mgmt-backend
crypto-js expressjs mongodb-atlas mongoose nodejs nodemailer passportjs rest-api
Last synced: 11 days ago
JSON representation
rest-api based back-end for a react-tailwind based front-end to build a drugs information system that holds drugs, generics, groups, formulation, strength with actions like add, edit-update, search, delete, paginated-tabular-view on it.
- Host: GitHub
- URL: https://github.com/masumkhan081/pharmacy-mgmt-backend
- Owner: masumkhan081
- Created: 2023-09-27T05:59:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-19T18:27:53.000Z (17 days ago)
- Last Synced: 2025-01-19T18:38:09.528Z (17 days ago)
- Topics: crypto-js, expressjs, mongodb-atlas, mongoose, nodejs, nodemailer, passportjs, rest-api
- Language: JavaScript
- Homepage: https://drugs-info-backend.vercel.app
- Size: 678 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
npm init -y
npm install --save-dev typescript
nano tsconfig.jsonnpm install --save [email protected]
npm install -save-dev @types/[email protected]import express from 'express';
const app = express();
const port = 3000;app.get('/', (req, res) => {
res.send('Hello World!');
});app.listen(port, () => {
return console.log(`Express is listening at http://localhost:${port}`);
});npx tsc
node dist/index.js
"start": "tsc && node dist/index.js",
"dev": "nodemon --exec ts-node index.ts",