chrmoritz / system-coffee

SystemJS plugin for compiling CoffeeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

system-coffee

SystemJS plugin for compiling CoffeeScript

jspm install coffee=github:chrmoritz/system-coffee

In config.js:

System.config({
  map: {
    coffee: "system-coffee"
  }
});

In your app:

System.import('./test.coffee!')
  .then(function (test) {
    var t = new test('Test');
    console.log(t);
  })

About

SystemJS plugin for compiling CoffeeScript


Languages

Language:HTML 45.5%Language:CoffeeScript 29.8%Language:JavaScript 24.8%