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

devtools-rgui

v1.0.0

Published

CLI-based application with various development and productivity tools

Downloads

3

Readme

Demo

gif of application

About

As a front-end developer, my web browser bookmarks are constantly cluttered with links to several workflow applications (e.g. font assets, image compressors, color palettes). DevTools fixes this issue by bundling several productivity tools into one, simple-to-use CLI application.

Originally, DevTools was intended to be nothing more than a simple text file with references to several useful tools for front-end developers. Instead, I decided to create every tool from scratch and implement them as executable commands. Built entirely with JavaScript on Node.js, DevTools offers a simple and quick way to use various tools -- all from the command line!

DevTool features several tools, including:

  • random color generator
  • decimal-to-binary converter
  • countdown timer
  • digital clock

Getting Started

Prerequisites

Make sure you have all the following prerequisites on your machine before using this application:

  • Node.js - Node.js is a server-side runtime environment that lets you run JavaScript outside a web browser, and can be downloaded here.
  • npm - By default, npm comes pre-installed with Node.js. If you already have Node.js, then chances are, you probably also have npm. To check if npm is installed on your machine, type this into the command line:
$ npm -v
  • Terminal Emulator - There's many different terminal emulators to choose from, but most machines usually already come with one. If you use VS Code as an IDE, you can use it's built-in Terminal.

Installation

  1. To get started, grab a copy of DevTools by cloning it to your local machine:
git clone https://github.com/renderGUI/dev-tools.git
  1. Install the application dependencies:
$ npm install
  1. Run the application:
$ npm start

Usage

  • RUNNING DEVTOOLS GLOBALLY - By default, DevTools will only run in the project directory. In order to execute DevTools from anywhere in the terminal emulator, type this into the command line:
$ sudo npm link

...this will ask for your password since it's a root user command. Now, DevTools can be executed from anywhere in the terminal emulator by using the devtools command.

  • CHOOSING A TOOL - To navigate through the tools, use the Up/Down arrow keys. Select a tool by hitting the Return key (Enter on Windows).
  • STOPPING THE APPLICATION - You can stop the application at any time by hitting Ctrl + C.

Version History

  • 1.0.0: Initial release.