Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
broccoli-node-info
Advanced tools
Inspect Broccoli nodes; thin wrapper around node.__broccoliGetInfo__()
This is a low-level package used to communicate with Broccoli nodes (that is,
plugin instances). It provides a thin wrapper around
node.__broccoliGetInfo__()
, normalizing different versions of the node API
to the newest version.
This package is mainly used by the Broccoli Builder
class, but it can also
be used for inspecting nodes for testing, wrapping, diagnostics, or similar
purposes. If you are tempted to call node.__broccoliGetInfo__()
or access
private variables on
broccoli-plugin instances,
such as node._name
or node._inputNodes
, then use this package instead!
For background on the Broccoli node API, see docs/node-api.md.
var broccoliNodeInfo = require('broccoli-node-info');
node = new SomeBroccoliPlugin();
var nodeInfo = broccoliNodeInfo.getNodeInfo(node);
// Now we can use nodeInfo.name, nodeInfo.annotation, etc.
getNodeInfo(node)
This function calls node.__broccoliGetInfo__(broccoliNodeInfo.features)
.
For node
objects conforming to the most recent node API, it simply returns
the resulting nodeInfo
object.
For node
object conforming to an older version of the node API, it provides
compatibility code to normalize the nodeInfo
object.
As a result, regardless of the API version used by the node
object, we
obtain a nodeInfo
object conforming to the current specification in
docs/node-api.md
This function throws a broccoliNodeInfo.InvalidNodeError
when called with
Builder
, they
are deprecated in favor of
broccoli-source),.read/.rebuild
API (see
docs/broccoli-1-0-plugin-api.md), orInvalidNodeError
Error
subclass, potentially thrown by getNodeInfo()
.
features
A hash of all supported feature flags. This hash acts like a version number for the node API. In the current version, its value is
{
persistentOutputFlag: true,
sourceDirectories: true
}
FAQs
Inspect Broccoli nodes; thin wrapper around node.__broccoliGetInfo__()
We found that broccoli-node-info demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.