1.0.2 • Published 5 years ago

npmstarterpack v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

npmstarterpack

npmstarterpack is a nodejs library which include major libraries like express, body-parser and cors .This package simplifies the api development

Installation

npm i npmstarterpack

Usage

const app = require("npmstarterpack");
app.use("/", (req, res, next) => {
  res.status(200).json({
    message: "success",
  });
});
app.listen(3000);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT