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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
lib/hoard.js
test/*.hoard
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ hoard.update('users.hoard', 1337, 1311169605, function(err) {
// Update multiple values at once in an existing Hoard file.
// This function is much faster when dealing with multiple values
// that need to be written at once.
hoard.update('users.hoard', [[1312490305, 4976], [1312492105, 3742]], function(err) {
hoard.updateMany('users.hoard', [[1312490305, 4976], [1312492105, 3742]], function(err) {
if (err) throw err;
console.log('Hoard file updated!');
});
Expand Down Expand Up @@ -102,6 +102,12 @@ maximum compatibility. They don't require the Python version to be installed but
files generated by it. The tests were implemented using Expresso after some experimentation with Vows.
Ran into some issues with Vows and decided to use the much simpler (and dumber) Expresso instead.

Testing
-------

- [ cake setup ]
- cake [ install | build ]
- cake test

Authors
-------
Expand Down
Loading