
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
turing-server
Advanced tools
An express server.
The turing-server simply wraps an express app and provides a start method on it for easily starting the server.
const TuringServer = require('turing-server');
class MyApp extends TuringServer {
constructor() {
// do your express stuff here - config, routing, middleware, ...
}
}
new MyApp().start();
turing:server:onlyIPv4 (optional) - If set to true server will only serve ipv4 addresses and therefor not add ::ffff: prefix to ipv4 addresses. (default: "false")
turing:server:port (optional) - The server port. (default: "3000")
turing:logging:accesslog:enabled (optional) - Disable/Enable access logging. (default: true)
turing:logging:accesslog:format (optional) - The morgan accesslog format (default: ":remote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length] ":referrer" ":user-agent" :response-time")
turing:logging:accesslog:meta (optional) - Object of additional key-value pairs for each log entry. (default: {})
turing:logging:accesslog:skipHealthUrl (optional) - Disable/Enable access logging of health url access. (default: "false")
turing:logging:accesslog:skipStatusUrl (optional) - Disable/Enable access logging of status url access. (default: "false")
Apache-2.0
FAQs
An express server.
We found that turing-server 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.