npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bsnext/fastify-payload

v1.0.5

Published

Adding raw-body data as 'request.payload' field into Fastify Requests.

Downloads

107

Readme

Fastify-Payload

Build & Test Node.JS Supported Fastify Supported Install Size Dependencies License

Plugin for adding raw-body data as 'request.payload' field into Fastify Requests.

Tested on Fastify v4.14+ and Node.JS v19+! https://github.com/bsnext/fastify-payload/actions/workflows/test.yml

This parser do not have external dependencies, only "@fastify/plugin". Also, it use default secure JSON parser fron Fastify, with defined by server rules about prototype/constructor poisoning.

This plugin Supported adding extra "Content-Type's" and custom parsers. And that only one reason, why i not use that.

Installing:

npm install @bsnext/fastify-payload

Usage:

import FastifyPayload from '@bsnext/fastify-payload'; // TS
import { default as FastifyPayload } from "@bsnext/fastify-payload"; // MJS
const { default: FastifyPayload } = require(`@bsnext/fastify-payload`); // CJS

const server = Fastify();
await server.register(FastifyPayload, {
	// Use plugin for all paths
	// Do not use "true" in production
	// Every request with existed payload - will eat memory
	global: boolean = false; 

 	// Specific paths for save payload
	paths: string[] = [];

	// Payload format
	parse: `string`|`buffer` = `buffer`; 

	// Content-Type parsers. Possible add and use more parsers (XML, JSON5, ...).
	// "default" option only for "application/json", "text/plain" or "*".
	// Enabled for "application/json" only by default.
	// Default parser for "*" will accept any Content-Type on Fastify Server!
	contentTypes?: {
		// Use "default" if wanna use default parser.
		// Or write custom parser by function.
		[key: string]: 'default' | function(request, payload, callback: (err, result));
		[`application/json`]: 'default';
	};

	// Plugin will output warnings when overwritten content parsers
	// It 100% will output warning about "application/json" overwrite
	// In 99.9% you need set "false" by hands. 
	// If make "false" by default - it can be a head-pain reason for somebody.
	overwriteWarning?: boolean = true;
});

server.post(url, {
	config: {
		// Save payload in this route?
		// Default "false" for everything.
		// Of course if not use "global: true" in plugin.
		payload: boolean = false
	}
}, function() {
	...
})
// Important note about modify default "contentParsers" object.
// You should send all object if want enable "text/plain" or add new parser
await server.register(FastifyPayload, 
	{
		contentParsers: {
			[`application/json`]: 'default';
			[`application/xml`]: function(...) {... your xml parse code};
		}
	}
);

// If object not will have a "application/json" - it not will parse that.
// This code will disable plugin for all, and left only "application/xml".
await server.register(FastifyPayload, 
	{
		contentParsers: {
			[`application/xml`]: function(...) {...};
		}
	}
);

More information about Fastify Content-Type Parsing: https://fastify.dev/docs/v5.0.x/Reference/Server/#addcontenttypeparser

Example: Regular Usage

import Fastify from 'fastify'; 
import FastifyPayload from '@bsnext/fastify-payload'; 

const server = Fastify(...);
await server.register(FastifyPayload);

server.post(`/request_with_payload`, {
	config: { payload: true }
}, function(request, response) {
	console.log(`request.payload ->`, request.payload);
	response.send(`ok`);
})

server.listen({ port: 8080 });

Example: Weird, But Possible Usage

import Fastify from 'fastify'; 
import FastifyPayload from '@bsnext/fastify-payload'; 

const server = Fastify(...);
await server.register(FastifyPayload, {
	paths: [`/request_with_payload`, `/one_more_request_with_payload`]
});

server.post(`/request_with_payload`, function(request, response) {
	console.log(`request.payload ->`, request.payload);
	response.send(`ok`);
})

server.patch(`/one_more_request_with_payload`, function(request, response) {
	console.log(`request.payload ->`, request.payload);
	response.send(`ok`);
})

// Options for save payload can be shuffled: "paths" + "configs"
server.put(`/last_request_with_payload`, {
	config: { payload: true }
}, function(request, response) {
	console.log(`request.payload ->`, request.payload);
	response.send(`ok`);
})

server.listen({ port: 8080 });

Example: Adding Extra Parser

import Fastify from 'fastify'; 
import FastifyPayload from '@bsnext/fastify-payload'; 

import { xml2js } from 'xml-js';

const server = Fastify();
await server.register(FastifyPayload, {
	contentTypes: {
		[`application/json`]: 'default',
		[`application/xml`]: function (request, payload, done) {
			try {
				done(null, xml2js(payload));
			} catch (error) {
				done(error);
			}
		}
	}
});

server.post(`/convert_xml_to_json`, {
	config: { payload: true }
}, function (request, response) {
	console.log(`request.payload ->`, request.payload);
	/*
	request.payload -> <hi>
		<text>How are you?</text>
	</hi>
	*/
	response.send(request.body);
	/*
	{
		"elements": [
			{ "type": "element", "name": "hi", "elements": [...] }
		]
	}
	*/
});

server.listen({ port: 8080 });