Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Non-intrusive Node JavaScript web application framework
\ `hek-yü-ap \
Kequapp is a framework designed to leverage Node's built-in features while staying out of your way. It can be used to create performant api's, html pages, and anything you can think of. Kequapp provides a robust and flexible foundation to build your web applications with ease.
For detailed documentation, guides, and more examples, please visit the official documentation website.
0.7.0 -> 0.8.0
Handles are now called actions. Replace all instances of "handle" with "action", "createHandle" with "createAction".
npm install kequapp
Here's a simple example to get you started with Kequapp.
import { createServer } from 'http';
import { createApp } from 'kequapp';
const app = createApp({
routes: [
{
method: 'GET',
url: '/',
actions: [() => 'Hello world!'],
},
],
});
createServer(app).listen(4000, () => {
console.log('Server running at http://localhost:4000');
});
Contributions welcome! If you have any questions, need further assistance, or want to contribute, please visit our GitHub page.
Kequapp is licensed under the ISC license.
FAQs
Non-intrusive Node JavaScript web app framework
We found that kequapp 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.