
Security News
CISA Rebuffs Funding Concerns as CVE Foundation Draws Criticism
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
connect-yii
Advanced tools
connect middleware to pass requests to FastCGI server process.
Because PHP-FPM. Yes, that's right, it's insanity, but I need it, mainly for development and automated testing tasks I do with grunt and simple node.js scripts.
This module is a stripped down version of this https://github.com/davidcoallier/node-php server converted to connect middleware. It was then modified to support POST and PUT, pass required headers etc.
var connect = require('connect'),
php = require('../connect-fastcgi');
var app = connect()
.use('/php', php({ fastcgiPort: 8002, fastcgiHost: 'localhost', root: "./php" }))
.use(connect.logger())
.use(connect.static('./assets'))
.listen(3000);
Available options:
root:
root directory for scriptsfastcgiHost:
host or socket path to FastCGI processfastcgiPort:
portDavid Coallier for original node-php module
FAQs
connect middleware to pass requests to FastCGI server
The npm package connect-yii receives a total of 18 weekly downloads. As such, connect-yii popularity was classified as not popular.
We found that connect-yii 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
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.