Intridea Blog: Technology, Design, Business

Back to Blog

Get in Touch

You're currently viewing posts tagged with: "node"

RailsConf 2012 - Evented Ruby vs Node.js

By Intridea | April 23, 2012 ruby, conferences, railsconf, events, node, presentations, node.js, jerry

Hey RailsConf goers! You won't want to miss Jerry Cheung, co-author of the just-released MacRuby in Action book and Senior Engineer at Intridea present "Evented Ruby vs Node.js" Tuesday afternoon!

Read more…

Hire a Guard for Your Project

By Michael Bleigh | August 25, 2011 ruby, jquery, node, workflow, automation, guard
Medium

Of all of the new tools that I've picked up using for development in the past six months, there is one that has come to stand above the others for its nearly universal utility. That tool is Guard.

Guard is a RubyGem but don't let that fool you into thinking it's only useful for Ruby projects. Guard is essentially an autotest for everything. It provides a general purpose set of tools for watching when files are changed in your project and taking action based on it. You can use it to do just about anything, but common uses will include:

Read more…

Marathons, Pirates, and Moving Beyond jQuery

By Brent Collier | April 14, 2011 javascript, jquery, node, learning, coffeescript, dojo

I tell myself that I write JS every day, but I don’t. I write jQuery. Don’t get me wrong, it gets the job done. But it never feels right. Now, jQuery and its DOM-centric approach (at least in common usage) aren’t all to blame. Its just as much my fault in that beyond the library, I know very little about the language. I intend to do something about it. I have a plan and I’m going to share it with you. First, here are my goals:

Read more…

Node.js Jumpstart

By Jerry Cheung | April 8, 2011 node, js

In a nutshell, Node is a Javascript framework for building network apps. Network apps are broader in scope than webapps. They don't need to run on HTTP, thus freeing you to write lower level tools. Node doesn’t necessarily have to be part of your core app, and in many cases, it makes for a good fit for writing some of the support functions for your webapp. I'll cover the basics of getting Node setup, some event driven programming, and miscellaneous Node goodies.

Read more…

Using NPM with Heroku Node.js

By Michael Bleigh | August 24, 2010 javascript, heroku, node, npm

The Node Knockout is this weekend **right now** and I've been trying to teach myself Node and get ready in a variety of ways. One of the most important (and least clear) aspects of preparation was figuring out how to properly vendor the latest Node libraries for use in Heroku. I've got NPM up and running locally, but as of its latest release it has no built-in support for vendoring. Here's how I managed.

Read more…