https://github.com/victorgu-github/nodejs_cli
https://github.com/victorgu-github/nodejs_cli
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/victorgu-github/nodejs_cli
- Owner: victorgu-github
- Created: 2019-11-08T03:10:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T18:59:53.000Z (almost 5 years ago)
- Last Synced: 2025-02-12T10:54:27.146Z (about 1 year ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# challenge-one
Simple Node developer challenge.
### Goal
Clone this repo and build a simple key/value store CLI using only the core Node API. Once you have finished the challenge, please deliver it by providing a GitHub repo, Dropbox, or Google Drive link.
### Installation
Clone the repository here
Navigate to your project directory
Run yarn to install node dependencies.
Run yarn link to creates a symbolic link between project directory and executable command.
### Store API
`$ store add mykey myvalue`
`$ store list`
`$ store get mykey`
`$ store remove mykey`