Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

next-runtime

Package Overview
Dependencies
Maintainers
0
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-runtime

handler to improve data handling in Next.js getServerSideProps

  • 2.4.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

banner

All you need to handle POST requests and file uploads in getServerSideProps.

Documentation

All documentation and guides can be found at next-runtime.meijer.ws.

Features

next-runtime aims to move more logic to the "runtime part" of your Next.js server, and less static site generation. With proper cache headers, every server is an (incremental) static site generator.

To achieve that, we provide you a convenient API to:

  • Handle POST requests in getServerSideProps.
  • Handle file uploads in getServerSideProps.
  • Easily manage headers and cookies.
  • Reuse getServerSideProps as zero-config JSON api.

Usage

In case you're not the documentation type of person, here's a quick example to get you up and running. Please consult the docs if this leaves you with questions.

import fs from 'fs';
import { handle, json } from 'next-runtime';

export const getServerSideProps = handle({
  async upload({ file, stream }) {
    stream.pipe(fs.createWriteStream(`/uploads/${file.name}`));
  },

  async get({ params, query }) {
    return json({ name: 'Stephan Meijer' });
  },

  async post({ req: { body } }) {
    return json({ message: 'Thanks for your submission!' });
  },
});

export default function Home({ name, message }) {
  if (message) {
    return <p>{message}</p>;
  }

  return (
    <form method="post" encType="multipart/form-data">
      <input name="name" defaultValue={name} />
      <input type="file" name="file" />
      <button type="submit">submit</button>
    </form>
  );
}

Sponsor

Are you, or your employer, a satisfied user of this, or any of my other projects. Then please consider sponsoring my work so I can dedicate more time to maintaining this kind of projects.

Contributing

Please check contributing.md. It contains info about the structure of this repo to help you get up and running.

Contributors

Thanks goes to these wonderful people (emoji key):

Stephan Meijer
Stephan Meijer

💻 📖 🤔 🚇 🚧
Gal Schlezinger
Gal Schlezinger

📖
Darius
Darius

💻 ⚠️
Umar Ahmed
Umar Ahmed

💻
HIKARU KOBORI
HIKARU KOBORI

💻
Koichi Kiyokawa
Koichi Kiyokawa

💻 ⚠️
Gorka Cesium
Gorka Cesium

📖

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 24 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc