Giter Club home page Giter Club logo

Comments (2)

jashkenas avatar jashkenas commented on July 23, 2024

I'd rather not build in require() functionality -- it's outside the scope of the core language. It shouldn't be hard to have scripts interact. In Narwhal, or any CommonJS environment, use require() and the exports object, as you would in any other JS package.

In the browser, you should explicitly add the objects that you want to export to "window", or even "this" at the top-level (which is also "window"). ie:

window.square: x => x * x
window.cube:   x => square(x) * x

There are no globals by accident in CoffeeScript, but you can definitely add as many as you'd like on purpose. Closing the issue...

from coffeescript.

weepy avatar weepy commented on July 23, 2024

Jazz, you might want to take a look at my beans-server (which now servers coffee script too): http://github.com/weepy/bean-server

It builds dependencies by hiding them inside comments. So in coffee script it works like :

#= require 
#= require "local_file"

from coffeescript.

Related Issues (20)

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.