@sdk_cy/body-parser

1.0.0 • Public • Published

@sdk_cy/body-parser

@sdk_cy/body-parser is a body parser middleware which it can be used with express or @sdk_cy/tiny-server It can parse json or x-www-form-urlencoded data from your request.

Installation

Use the package manager npm to install body-parser.

npm install @sdk_cy/body-parser

Usage

const tiny = require("@sdk_cy/tiny-server"); //You can use express
const bodyParser = require("@sdk_cy/body-parser");
const port = 8000;
const app = tiny();

app.use(bodyParser);

app.post("/", (req, res) => {
    //This endpoint now accept json or x-www-form-urlencoded
    res.setHeader("Content-Type","application/json");
    return res.status(200).send(JSON.stringify(req.body));
});

app.listen(port, (err) => {
    if (err) {
        return console.log('Error: ', err)
    }
    console.log("Server is listening on ", port)
});

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

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i @sdk_cy/body-parser

    Weekly Downloads

    2

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    4.78 kB

    Total Files

    4

    Last publish

    Collaborators

    • sdk_cy