Git Product home page Git Product logo

macchiato's Introduction

Macchiato

About

Macchiato is a small and highly experimental PHP library, built on top of the SpiderMonkey PECL extension, that compiles CoffeeScript code to JavaScript, or directly executes it.

Unfortunately the SpiderMonkey PECL extension cannot be considered stable at this point. Compiling CoffeeScript to JavaScript should not pose any problem, but code execution can lead to random segmentation fault errors.

A few examples

Create an instance of Macchiato

Macchiato requires the CoffeeScript client compiler library in order to work, so you must pass a valid path or URI for the JavaScript file to the constructor method:

<?php
$pathToCoffeeScript = 'coffee-script.js';
$coffee = new Macchiato\CoffeeScript($pathToCoffeeScript);

Compile CoffeeScript to JavaScript

You can pass your CoffeeScript code to Macchiato and compile it to JavaScript:

<?php
var_dump($coffee->compile('square = (x) -> x * x'));
/*
string(64) "var square;
 square = function(x) {
   return x * x;
 };"
*/

Execute CoffeeScript directly in PHP

It is also possible to execute your CoffeeScript snippets directly in PHP:

<?php
var_dump($coffee->execute("
square = (x) -> x * x
square 42
"));
// int(1764)

Pass PHP objects and classes to CoffeeScript for execution

PHP classes and objects can be made explicitly available to CoffeeScript when executing scripts:

<?php
$context = $coffee->createContext();
$context->registerVariable('message', ($m = 'Hello there!'));
$context->registerFunction('alert', function($msg) { echo "$msg\n"; });
$coffee->execute('alert(message)', $context);

Dependencies

Links

Project

Related

Author

License

The code for Macchiato is distributed under the terms of the MIT license (see LICENSE).

macchiato's People

Contributors

nrk avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.