
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
fortune-json-api
Advanced tools
This is a JSON API serializer for Fortune.js, which implements all of the features in the base specification, and follows the recommendations as much as possible.
$ npm install fortune fortune-http fortune-json-api
const http = require('http')
const fortune = require('fortune')
const fortuneHTTP = require('fortune-http')
const jsonApiSerializer = require('fortune-json-api')
// `instance` is an instance of Fortune.js.
const listener = fortuneHTTP(instance, {
serializers: [
// The `options` object here is optional.
[ jsonApiSerializer, options ]
]
})
// The listener function may be used as a standalone server, or
// may be composed as part of a framework.
const server = http.createServer((request, response) =>
listener(request, response)
.catch(error => { /* error logging */ }))
server.listen(8080)
The options
object is as follows:
prefix
: hyperlink prefix. If this prefix starts with /
, then it will rewrite paths relative to the prefix. For example, a prefix valued /api
will handle requests at that route like /api/users/1
. Default: ""
(empty string).inflectType
: pluralize and dasherize the record type name in the URI. Can be Boolean to enable/disable all inflections or an object specifying each type in specific with unreferenced types set to default, ex: { faculty: false }
. Default: true
.inflectKeys
: camelize the field names per record. Default: true
.maxLimit
: maximum number of records to show per page. Default: 1000
.includeLimit
: maximum depth of fields per include. Default: 3
.bufferEncoding
: which encoding type to use for input buffer fields. Default: base64
.jsonSpaces
: how many spaces to use for pretty printing JSON. Default: 2
.jsonapi
: top-level object mainly used for describing version. Default: { version: '1.0' }
.castNumericIds
: whether to cast numeric id strings to numbers. Default: true
.Internal options:
uriTemplate
: URI template string.allowLevel
: HTTP methods to allow ordered by appearance in URI template.This software is licensed under the MIT license.
FAQs
JSON API serializer for Fortune.
The npm package fortune-json-api receives a total of 1,186 weekly downloads. As such, fortune-json-api popularity was classified as popular.
We found that fortune-json-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.