Reputation: 5108
When you try to install drizzle:
npm install drizzle
it fails when node version mismatches and there are some unresolved lib dependencies with errors:
In file included from ../src/node-boilerplate/inc/scrypt_async.h:28: ../src/node-boilerplate/inc/scrypt_common.h:39:63: error: too few arguments to function call, single argument 'context' was not specified N(obj->Get(Nan::New("N").ToLocalChecked())->Uint32Value()),
Update: find answer below for correct way to install drizzle
Upvotes: 1
Views: 346
Reputation: 5108
The correct way to install Drizzle is:
npm install @drizzle/store
Upvotes: 1