Express.js is a framework of Node.js for building efficient, scalable Node.js server-side applications. It uses modern JavaScript, is built with JavaScript (preserves compatibility with pure JavaScript) and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).
Under the hood, Node.js makes use of Express, but also, provides compatibility with a wide range of other libraries, like e.g. Mongoose, allowing for easy use of the myriad third-party plugins which are available.
In recent years, thanks to Node.js, JavaScript has become the “lingua franca” of the web for both front and backend applications, giving rise to awesome projects like Angular, React and Vue which improve developer productivity and enable the construction of fast, testable, extensible frontend applications. However, on the server-side, while there are a lot of superb libraries, helpers and tools for Node, none of them effectively solve the main problem - the architecture.
User_Auth Microservices aims to provide an application architecture out of the box which allows for effortless creation of highly testable, scalable, loosely coupled and easily maintainable applications. The architecture is heavily inspired by Node.js.
Provide a link or embed a demo of your project (if applicable). You can also add screenshots or GIFs to showcase the functionality.
List the technologies and programming languages used in your project.
Include instructions on how to get started with your project. This may include:
- Installation guide
- Dependencies or prerequisites
- How to run the project locally
We welcome contributions from everyone. Here are some guidelines to get started:
- Fork the repository and create your branch:
git checkout -b your-branch-name
- Make your changes and commit them:
git commit -m 'Add some feature'
- Push to your forked repository:
git push origin your-branch-name
- Open a pull request to the main repository's branch
Please follow the cotribution guide in all your interactions with the project.
Md Shadab Azam Ansari |
Rishita Jayant |
Mentor Name |
Thanks go to these Wonderful People: Contributions of any kind are welcome!
Mention the people who successfully contributed to your project as contributors.
Include the license information for your project. For example, you can use the MIT License:
This project is licensed under the terms of the MIT License. Feel free to contribute to this repo.
locally, usually for use as a module:
npm i user-auth-microservice
GET /api/items
Parameter | Type | Description |
---|---|---|
api_key |
string |
Required. Your API key |
GET /api/items/${id}
Parameter | Type | Description |
---|---|---|
id |
string |
Required. Id of item to fetch |
config/db.js
import mongoose from "mongoose";
const connectDB = async () => {
let uri = process.env.MONGO_URI;
try {
await mongoose
.connect(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
})
.catch((error) => {
console.log("connection in error:::", error);
});
console.log("mongo DB connected");
mongoose.set('debug', function(collectionName, method, query, doc, options) {
console.log(collectionName + '.' + method, JSON.stringify(query), doc)
// log.info({
// dbQuery: set
// });
});
} catch (e) {
console.error(e, "error");
} finally {
// await client.close();
}
};
export default connectDB;
/>
#### Get all items
#### add(num1, num2)
Takes two numbers and returns the sum.
## To Run The Project
To Run The Project
```bash
npm run dev
Contributions are always welcome!
- Don't Create Pull Request to update "readme.md" File.
- Maintain proper folder structure.
- In case you need to add an external package, install it by using npm. Don't push the complete package file here
- Fork the repo
- Clone into local
- Run npm install
- Run npm run dev
- Fix all the buttons
- Improve box-shadow in light mode
- Make dark mode as default
See contributing.md
for ways to get started.
Please adhere to this project's code of conduct
.
Server: Node.js, Express.js Auth, JwToken
import CONSTANTS from '../constants/index.js';
import UserRoutes from '../modules/user/user.routes'
const routes = (app)=>{
app.use(`${CONSTANTS.API_URI}/user`,UserRoutes);
// console.log(app , "::dddddddddd")
}
export default routes;
/>