Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6333199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:24:57+00:00 2026-05-24T18:24:57+00:00

I am new to coffeescript. I saw a coffeescript video in Rails casts.com. From

  • 0

I am new to coffeescript. I saw a coffeescript video in Rails casts.com. From that episode I understand how to convert the normal Js and Jquery to coffeescript code and the usage of coffeescript.

I am trying to create a coffeescript example without rails. I wetn through the coffeescript site. They first install Node.js. I tried to install node.js in windows and ubuntu, but I had failures. I followed the instruction as per this site:

http://howtonode.org/how-to-install-nodejs#ubuntu

For ubuntu I got “bash: ./configure?: No such file or directory” error when I execute the following command

./configure

Can anyone help me to create simple coffescript example without rails?

One more thing – In Mac “By the help of homebrew I can see the compiled js of coffescript code through compiled and Display Js window”. Are there any options available in windows and ubuntu?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T18:24:58+00:00Added an answer on May 24, 2026 at 6:24 pm

    I would bet the easiest way to install Node.js on Ubuntu is through APT:

    $ sudo apt-get install nodejs
    

    It probably will get some outdated version but it can be enough for some tests.

    If you prefer the latest version (which is a reasonable preference), I bet it would be easier to install Node.js from the dist package. Just copy and paste this on terminal:

    wget http://nodejs.org/dist/node-v0.5.0.tar.gz && \
    tar zvxf node-v0.5.0.tar.gz && \
    cd node-v0.5.0 && \
    ./configure && \
    make && \
    sudo make install
    

    This line will:

    • download the latest Node.js source code with wget http://nodejs.org/dist/node-v0.5.0.tar.gz
    • uncompress the downloaded source code with tar zvxf node-v0.5.0.tar.gz
    • enter into the source code with cd node-v0.5.0
    • set the build parameters with ./configure
    • effectively build the Node.js executable with make
    • install the built Node.js in your path with sudo make install

    The && means “execute the next command if the previous command succeeds” (for example wget http://nodejs.org/dist/node-v0.5.0.tar.gz && tar zvxf node-v0.5.0.tar.gz means that we will download the package with wget and iff the download succeeds we will unpack the download file with tar. The backslashes (\) are here for allowing us to break all the series of commands in more than one line because, by default, we would have a big line:

    wget http://nodejs.org/dist/node-v0.5.0.tar.gz && tar zvxf node-v0.5.0.tar.gz && cd node-v0.5.0 && ./configure && make &&  sudo make install
    

    Then, you can install npm with this simple command, found in the own npm github page:

    $ curl http://npmjs.org/install.sh | sudo sh
    

    With npm, it will be too easy to install coffee, as you can see in the CoffeeScript page:

    $ npm install coffee-script
    

    Now, just run your tests:

    $ coffee
    coffee> a = key: 'value'
    { key: 'value' }
    coffee> a.key
    'value'
    

    Does it look like to much work? You can try CoffeeScript in the language page. Just click in “Try CoffeeScript” and a console will appear to you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If i want to get a js code like this which compiles from coffeescript:
I'm new to CoffeeScript and seems that I can't find any document generator for
I'm new to jquery and i just upgraded to rails 3.1 rc4 and i'm
I'm using the following Coffeescript code to validate that initialization of one backbone.js view
Warning: Code is in Coffeescript. I hope that's ok. I have a model, Song
the following JS code is being produced from CoffeeScript equivalent. I want to add
I'm new to javascript and starting the mix javascript + jquery + coffeescript all
New to javascript/jquery and having a hard time with using this or $(this) to
New to both Ruby and Rails but I'm book educated by now (which apparently
New to WCF, but familiar with COM+ - can I wrap a WCF service

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.