Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expresso tutorials

Tags:

node.js

I have found virtually no documentation other than the official one dealing with the JavaScript TDD framework written for nodejs called Expresso. Any help?

like image 450
Randomblue Avatar asked Aug 08 '11 22:08

Randomblue


2 Answers

I learned Expresso mainly by looking at the source for js-traverse. It's a good example because:

  • It has a lot of tests
  • It's for a fairly simple library
  • Its package.json set up properly. It includes expresso as a devDependency so it will get installed when running npm install ., and it includes a test script so its tests can be run with npm test.
like image 112
Benjamin Atkin Avatar answered Oct 27 '22 17:10

Benjamin Atkin


There's a video tutorial on nodetuts.com covering Expresso and Should.js

http://vimeo.com/19763028

Edit: updated to the link to point to Vimeo.

like image 22
Kyle Finley Avatar answered Oct 27 '22 17:10

Kyle Finley