Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Quickly create simple HTTP services.
Make sure you've got node installed, then make appa
a project dependency:
npm install --save appa
var http = require('http')
var app = require('appa-api')()
var send = require('appa-api/send')
var log = app.log
app.on('/', function (req, res, context) {
send(res, { message: 'oh hey friends' })
})
http.createServer(app).listen(3000, function () {
log.info('server started at http://127.0.0.1:3000')
})
Any uncaught errors that occur in a request handler will be caught and a 500 Internal server error
response will be sent.
Send error responses using the appa-api/error
module:
var error = require('appa-api/error')
module.exports = function (req, res, ctx) {
return error(res, 404, 'Not found')
}
Sending an error response does not automatically log the error, so to add that you can do something like:
var error = require('appa-api/error')
var log = require('appa-api/log')()
module.exports = function (req, res, ctx) {
log.error(req.method, '500', errorStack)
return error(res, 500, 'Internal server error')
}
appa uses pino for logging. Pass options to pino with options.log
: appa({ log: pinoOptions })
.
See example pino usage and all pino options.
Or disable logging completely by setting options.log
to false
: appa({ log: false })
.
Contributions are welcome! Please read the contributing guidelines first.
It is important that this project contributes to a friendly, safe, and welcoming environment for all. Read this project's code of conduct
Read about the changes to this project in CHANGELOG.md. The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
FAQs
Quickly create simple HTTP services.
We found that appa-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.