in-mem-db is a javacript implementation of an in memory database. It supports Basic CRUD actions AND fully supports database transactions (BEGIN, ROLLBACK, COMMIT)
- Install Node v8.70 and NPM
node install
- Install Dependencies via NPM
npm install
npm start
ornode .
- Start the app. (npm start or node .)
- type any of the required commands into the command line:
GET <name>
SET <name> <value>
DELETE <name>
COUNT <name>
BEGIN
COMMIT
ROLLBACK
END
OPTIONS
The OPTIONS command will list all possible actions.
npm test