My Node.js Projects
This post has been updated at 16/08/2011.
Minitest.js in action (it's using colours.js):
- Minitest.js is a simple testing framework designed for testing asynchronous code. It's light-weight and it's not trying to reinvent the wheel, so it doesn't have any assertion helpers, because it expects that you simply use standard assert library.
- Task.node is a very simple task manager (imagine Make/Rake/Scons, but it doesn't suck as Make or Rake :) ). It's also very simple and light-weight.
-
Colours.js is a small module for providing colours to your CLI programs. It doesn't define any functions, it just name colours, because it's much easier to do
colours.bold.green + "Hello there!" + colours.resetthan"\x1B[1;32m" + "Hello there!" + "x1B[0m"
Minitest.js in action (it's using colours.js):
blog comments powered by Disqus