Socket
Book a DemoInstallSign in
Socket

coffeescript_compiler_tools

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

coffeescript_compiler_tools

Collection of useful helper methods for compiling CoffeeScript source code into executable JavaScript.

unpublished
latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

#Coffeescript Compiler Tools

A collection of tools to compile Coffeescript source code into JavaScript functions.

Installation

Install like any other NPM module by adding it to package.json, doing an npm install.

Usage

compile_function

Compiler = require 'coffeescript_compiler_tools'

source = '(param) -> "The param is #{param}."'
result = Compiler.compile_function source
result('foo')   # => "The param is foo."

FAQs

Package last updated on 01 Feb 2013

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