Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
next-runtime
Advanced tools
All you need to handle POST
requests and file uploads in getServerSideProps
.
All documentation and guides can be found at next-runtime.meijer.ws.
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:
getServerSideProps
.getServerSideProps
.getServerSideProps
as zero-config JSON api.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>
);
}
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.
Please check contributing.md. It contains info about the structure of this repo to help you get up and running.
Thanks goes to these wonderful people (emoji key):
Stephan Meijer 💻 📖 🤔 🚇 🚧 | Gal Schlezinger 📖 | Darius 💻 ⚠️ | Umar Ahmed 💻 | HIKARU KOBORI 💻 | Koichi Kiyokawa 💻 ⚠️ | Gorka Cesium 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
handler to improve data handling in Next.js getServerSideProps
We found that next-runtime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.