
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
es6-module-mapper
Advanced tools
DISCLAIMER: This is currently a ducktaped together solution, use at your own risk.
Transforms ES6 module syntax into object references (uses a single global object map) via recast and integrates into sprockets for dependency management, concatenation, etc..
NOTE: This requires nodejs to be available via the node
executable at runtime. If you're deploying with a Heroku buildpack you will need the multi buildpack.
Include the gem in your Gemfile
# Gemfile
gem 'es6-module-mapper', :git => 'https://github.com/jvatic/es6-module-mapper.git, :branch => 'master'
and require it:
require 'sprockets'
require 'es6-module-mapper'
You may wish to disable the Sprockets::DirectiveProcessor
if you're not using sprockets directives:
sprockets_environment.unregister_preprocessor(
'application/javascript', Sprockets::DirectiveProcessor)
You may now use the ES6 module syntax:
// foo.js
export function foo() {
return "foo";
}
var FOO = "foobar";
export { FOO as FOOBAR };
// bar.js
import { foo as echoFoo, FOOBAR } from "foo";
console.log(echoFoo()); // prints "foo" to the console
console.log(FOOBAR); // prints "foobar" to the console
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
es6-module-mapper ================
The npm package es6-module-mapper receives a total of 0 weekly downloads. As such, es6-module-mapper popularity was classified as not popular.
We found that es6-module-mapper 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.