# system-coffee **Repository Path**: mirrors_guybedford/system-coffee ## Basic Information - **Project Name**: system-coffee - **Description**: SystemJS plugin for compiling CoffeeScript - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # system-coffee SystemJS plugin for compiling CoffeeScript ``` jspm install coffee ``` In config.js: ``` javascript System.config({ map: { coffee: "system-coffee" } }); ``` In your app: ``` javascript System.import('./test.coffee!') .then(function (test) { var t = new test('Test'); console.log(t); }) ```