ShopList is a very simple NodeJS app that runs on terminal, and aims to create simple shopping lists. Once the user add an item to the list, the app creates a json file to store the data. Simple as that.
Use the npm default instalation to install ShopList.
npm install
To add an item to the list, it's just needed to pass the following arguments:
- title - The title of the item
- body - The body of the item
- amount - The amount of the item
node app add --title="Item" --body="Description" --amount=1.5
To remove an item to the list, simply pass the title of the item that will be removed.
node app remove --title="Item"
To read an item from the list, simply pass the title of the item.
node app read --title="Item"
To list all items from the list, simply pass the command with no arguments.
node app list
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.