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.
Reflect.js is a JavaScript (ES3 compatible) implementation of Mozilla's Parser API. It does not currently support some of Mozilla's extensions, such as generators, list comprehensions, for each
, E4X, etc. but may eventually support ones that are, or become Harmony proposals.
Builders are also supported.
Parsing really large files can be slow, for reasons articulated by Andy Chu.
You can download a minified-standalone version of reflect.js to embed in web pages here.
Reflect.js is available as a CommonJS module for Node.js. Simply install it with npm:
npm install reflect
var Reflect = require('reflect');
var ast = Reflect.parse("var a = 4 + 7");
console.log(Reflect.stringify(ast, " "));
Refer to Mozilla's docs for details on the AST interface.
The optional builder parameter to Reflect.parse() makes it possible to construct user-specified data from the parser, rather than the default Node objects.
The reflect.js module exports the default builder so you can redefine only the node constructors you care about and leave the rest default.
var Reflect = require('reflect');
var builder = Reflect.builder;
// redefine callback for variable declarations
builder["variableDeclaration"] = function (kind, declarators, loc) { ... };
var ast = Reflect.parse("var a = 4 + 7", {builder: builder});
MIT X Licensed.
FAQs
JavaScript parser adhering to Mozilla's parser API
We found that reflect 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
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.