
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
noface-args-patch
Advanced tools
Quickly and easily start PhantomJS from Node.js, with the ability to pass args patched in

No-Face (from Spirited Away) lets you quickly and easily start PhantomJS processes, and exchange data with them, from within Node.js.
var noface = require('noface');
var ph = noface(function(channel) {
// Runs within PhantomJS. (No access to closure!)
channel.onmessage = function(event) {
channel.send(event.data);
};
});
ph.on("open", function() {
ph.send("Hello world!");
});
ph.on("message", function(message) {
ph.close();
});
npm install noface
Make sure phantomjs is in your PATH.
noface(src, options)
No-Face opens a WebSocket connection between Node.js and PhantomJS. The
src callback function is executed within PhantomJS on the socket open
event, and receives the WebSocket instance.
Rather than a function, it may also be a string of JavaScript code. But in either case, note that it will not have access to closures, but will have access to all of the PhantomJS API.
The optional parameter options contains any additional options to pass to
child_process.spawn. If you include an array args in options, these will
be passed to the PhantomJS child.
By default, the PhantomJS child exits when the channel closes. Override
channel.onclose to change this behavior. The default error handler in
PhantomJS is also set to exit the process and emit an error event in
Node.js.
The return value is a NoFace instance.
open: The PhantomJS child has started and
the WebSocket connection is established.close: The WebSocket connection is closed.
By default, the PhantomJS child will automatically exit.message: The PhantomJS child sends a message.
Receives a string or Buffer.error: Startup failed or the child did not exit cleanly.
Receives an Error instance.send: Send a message to the PhantomJS child.
Accepts a string or a Buffer.close: Close the WebSocket connection.
By default, the PhantomJS child will automatically exit.child: Contains the ChildProcess instance from child_process.channel: While the WebSocket channel is open,
contains the WebSocket instance from faye-websocket.git clone https://github.com/Two-Screen/noface.git
cd noface
npm install
npm test
FAQs
Quickly and easily start PhantomJS from Node.js, with the ability to pass args patched in
We found that noface-args-patch 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.