Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[![Build Status](https://secure.travis-ci.org/emerleite/node-stopwatch.png)](http://travis-ci.org/emerleite/node-stopwatch)

INFO: This is a exactly copy from the repo: stopwatch by Emerson Leite - The unique difference is in this module I'm fix the name of file("/lib/stopwatch") on index.js and this module works great!

Node.js stopwatch
=================
This project is a simple way to use a stopwatch. I've done some penny auction/bid sistems with stopwatches and also done a realtime social video visualization. These projects shares a core stopwatch logic and because it becomes hard to maintain I extracted it to this library. I hope it helps somebody else.
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('./lib/stopwatcher');
module.exports = require('./lib/stopwatch');
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"author": "Emerson Macedo <emerleite@gmail.com> (http://codificando.com)",
"name": "stopwatch",
"name": "stopwatcher",
"description": "A managed stopwatch for Realtime Node.JS Apps",
"version": "0.1.0",
"homepage": "http://github.com/emerleite/node-stopwatch",
Expand Down