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

prodio-cli

v0.0.1

Published

Command Line Interface for Prodio

Downloads

4

Readme

Prodio

Prodio in Latin means to "Come forth, appear, proceed and/or project". It seemed like the prefect name for a project that hopes to help to move project management from a taboo topic into an enjoyable experience.

Prodio is NOT ready yet. Please keep an eye out though as it is making progress.

CLI

To use the CLI you will need to install it:

npm install -g prodio-cli

prodio init

prodio init [name] [version] [host] [-d Description]

Project Name:
Project Description:
Project Version:
Project Host:
Project Username:

prodio set [key] [value]

Key:
Value:

Examples:

prodio set username jdarling
prodio set global username jdarling

prodio add

prodio add [type] [value]

Type (user, task, group, note):
Value:

prodio add note to [type] [value]

Type (user, task, group, note):
Value:

Examples:

prodio add user jdarling
prodio add task Document things better
prodio add note to "Document things better" This is my note

prodio remove

prodio remove [type] [id]

Type (user, task, group, note):
ID:

Examples:

prodio remove note This is my note
prodio remove task Document things better
prodio remove user jdarling

prodio assign

prodio assign [type] [id] [user] [user...]

Type (user, task, group, note):
ID:
User(s):

prodio assigned to

prodio assigned to

Examples:

prodio assigned to me
prodio assigned to jdarling

prodio unassing

prodio unassign [type] [id] [user] [user...]

Type (user, task, group, note):
ID:
User(s):

prodio update

prodio update [id] [status]

ID:
Status (started, completed, in progress):

prodio link

prodio link [id] to [id]

prodio unlink

prodio unlink [id] from [id]

prodio list

prodio list [id]

Sample Output: prodio list

0) My Project
  1) My Group
    2) Task 1
    3) Task 2
      4) Note: ...
      5) Note: ...
  6) Group 2
    7) Task 1
    8) Another Task
      9) Sub task
        10) Note: Sub task note
      11) Note: Some Note

prodio find

prodio find [under id] or prodio find

Sample Output: prodio find task

2) Task 1
3) Task 2
7) Task 1
8) Another Task
9) Sub task
10) Note: Sub task note

Sample Output: prodio find task under 8

9) Sub task
10) Note: Sub task note

prodio detail

prodio detail [full]

Sample Output: prodio detail 8

0) My Project
  6) Group 2
    8) Another Task

Sample Output: prodio detail 8 full

0) My Project
  6) Group 2
    8) Another Task
      9) Sub task
        10) Note: Sub task note
      11) Note: Some Note