Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

es6-module-mapper

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

es6-module-mapper

es6-module-mapper ================

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

es6-module-mapper

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..

Usage

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

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 13 Apr 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc