smritify
v1.0.1
Published

Readme

Smritify - Note Taking CLI
Smritify is a command-line interface (CLI) tool designed for taking and managing notes efficiently. It provides a simple yet effective way to create, view, search, and delete notes right from your terminal.
Installation
To use Smritify, you'll need to have Node.js installed on your system. Then, you can install it globally using npm:
npm install -g smritifyUsage
Creating a New Note
smritify new <note> [--tags <tags>]Create a new note with the specified content. You can optionally add tags to categorize your note.
Viewing All Notes
smritify allView all notes currently stored in the database.
Finding Notes
smritify find <filter>Find notes that match the specified filter term.
Removing a Note
smritify remove <id>Remove a note by its ID.
Cleaning Up
smritify cleanRemove all notes from the database.
Launching Web Interface
smritify web [port]Launch a web interface to view and manage notes in a browser. Optionally, specify a port to bind the server on (default is 5000).
Example
smritify new "Remember to buy groceries" --tags "shopping, errands"
smritify find "groceries"
smritify all
smritify web
smritify clean