Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial findings and updates for hoard #1

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
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