npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

quick-cli-notes

v2.0.0

Published

A CLI tool for managing notes

Downloads

12

Readme

📓 Quick CLI Notes

quick-cli-notes is a sophisticated command-line interface (CLI) tool for efficient note management and task organization. With a suite of powerful features, this tool is designed to help you stay organized, productive, and in control of your tasks.

🚀 Version 2.0.0

This version includes new features, enhancements, and fixes to improve your experience with note management.

📑 Table of Contents

🌟 Features

📝 Add Notes

Create new notes with extensive customization options. Tailor each note with tags, priority levels, categories, and due dates to keep your tasks organized.

  • Command:

    quicknote add "<content>" [options]
  • Options:

    • --tag <tag>: Assign tags to categorize your note.
    • --priority <priority>: Set the priority level (low, normal, high).
    • --category <category>: Specify a category for better organization.
    • --subcategory <subcategory>: Further classify the note under a subcategory.
    • --due <date>: Set a due date in YYYY-MM-DD format.
  • Example:

    quicknote add "Meeting with team at 10 AM" --tag work --priority high --category work --subcategory meetings --due "2024-10-01"

📜 List Notes

Display all your notes in a neatly formatted table, including details such as content, tags, priority, category, and due dates.

  • Command:

    quicknote list

🔍 Search Notes

Find specific notes using keywords. This feature is essential for quickly locating relevant information amidst a large number of notes.

  • Command:

    quicknote search "<query>"

📤 Export Notes

Export your notes to various formats for backup, sharing, or processing. This ensures that your data is safe and easily accessible.

  • Commands:

    • To JSON:

      quicknote export json
    • To CSV:

      quicknote export csv

📥 Import Notes

Import notes from external files to integrate or restore your data. This feature supports both JSON and CSV formats.

  • Commands:

    • From JSON:

      quicknote import notes_export.json
    • From CSV:

      quicknote import notes_export.csv

🔗 Integration

Seamlessly connect with external services like Google Calendar. This integration will help synchronize your notes with your calendar for better task management.

  • Command:

    quicknote integrate google-calendar

Help

Get a detailed list of available commands and their usage to fully leverage the capabilities of quick-cli-notes.

  • Command:

    quicknote help

📦 Installation

To install quick-cli-notes, use npm to install it globally on your system:

npm install -g quick-cli-notes

🔧 Configuration

Environment Variables

Create a .env file in the root directory of your project to configure the tool:

  • Variables:
    • MONGODB_URI: Your MongoDB connection string.

Example .env file:

MONGODB_URI=mongodb://your-mongodb-uri

Ensure this file is added to your .gitignore to keep sensitive information secure.

🛠️ Development and Contribution

We encourage contributions to make quick-cli-notes even better! Follow these steps to contribute:

  1. Fork the repository on GitHub.

  2. Clone your fork locally:

    git clone https://github.com/imankii01/Quick-CLI-Notes
  3. Create a new branch for your feature or fix:

    git checkout -b feature/your-feature
  4. Make your changes and commit them:

    git commit -am 'Add new feature'
  5. Push to the branch:

    git push origin feature/your-feature
  6. Submit a Pull Request on GitHub to propose your changes.

📜 License

This project is licensed under the MIT License. See the LICENSE file for more details.

📧 Contact

For any questions, feedback, or support, please reach out:


This README.md file provides a comprehensive and professional overview of the quick-cli-notes tool, including detailed descriptions of features, commands, installation steps, configuration, and contribution guidelines. The Table of Contents enhances navigation, and the use of emojis and structured formatting makes the document visually appealing and user-friendly.