cloudflare-worker-request-data

1.0.1 • Public • Published

cloudflare-worker-request-data

RequestData() function is written to parse user provided data from GET/POST requests in Cloudflare Worker

Example

import { RequestData } from 'cloudflare-worker-request-data';

export default {
	async fetch(request, env, ctx) {

        const data = await RequestData(request)
        
        // do something with the data
			

	}
};

Description

RequestData(request) in the above example can get return of

  • a String in case of "application/text" or "text/html"
  • a Object in case of "application/json", "application/x-www-form-urlencoded", "mutipart/form-data"
  • a String which is empty if nothing parsed

The request shall be either in GET or POST, other methods of request will directly return you with an empty String.

License

MIT

/cloudflare-worker-request-data/

    Package Sidebar

    Install

    npm i cloudflare-worker-request-data

    Weekly Downloads

    1

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    3.48 kB

    Total Files

    3

    Last publish

    Collaborators

    • he-yang