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

akiko

v1.0.6

Published

Minimal JavaScript CLI Tool

Downloads

3

Readme

Akiko

Akiko a minimal JavaScript command-line toolkit for code generation, file management, web searches, testing setups, and daily motivation. Simplify your development workflows with an all-in-one command-line tool.

Installation

Before you can use Akiko, - make sure you have Node.js installed on your system.

Then, you can install it globally using npm:

npm install -g akiko
// In Linux, MacOS terminal or GitBash for Windows
akiko --version

or as a dependency

npm install akiko

In your package.json add scripts


{
  "scripts": {
    "akiko": "akiko",
  },
}

Then you can run it through npm

// In Linux, MacOS terminal or GitBash for Windows
npm run akiko --version

Usage

Akiko offers a multitude of commands to assist you in various development tasks. Below is an overview of the available commands:

Code Generation

  • make:class [names...]: Create JavaScript classes.
  • make:object [names...]: Create JavaScript objects.
  • make:func [names...]: Create JavaScript functions.
  • make:json [names...]: Create JSON files.
  • make:html [names...]: Create HTML files.
  • make:css [names...]: Create CSS files.
  • make:react [names...]: Create React files.
  • make:comp-r [names...]: Create React components.
  • make:page-r [names...]: Create React pages.
  • make:hook-r [names...]: Create custom React hooks.
  • make:vue [names...]: Create Vue files.
  • make:comp-v [names...]: Create Vue components.
  • make:page-v [names...]: Create Vue pages.
  • make:hook-v [names...]: Create Vue hooks.
  • make:svelte [names...]: Create Svelte files.
  • make:comp-s [names...]: Create Svelte components.
  • make:page-s [names...]: Create Svelte pages.
  • make:jest [names...]: Create Jest test files.
  • make:mocha [names...]: Create Mocha test files.

File Management

  • make:gitignore [names...]: Generate a .gitignore file.

  • read <file>: Read the contents of a file.

Web Searches

  • google <query>: Search something on Google.
  • youtube <query>: Search something on YouTube.
  • github <query>: Search for repositories on GitHub.

Motivation

  • quote: Generate a motivational quote.

Information

  • info: Get information about the package.

Help

  • help: Display help information for all available commands.

Examples

React

akiko make:react Button Card ProductList
// This command generates React files in your project src/.
akiko make:comp-r Button Card ProductList
// This command generates React components in your project src/components.
akiko make:page-r About Contact Home
// This command generates React pages in your project src/pages.
akiko make:hook-r useSearch useFetch
// This command generates custom React hooks in your project src/hooks.
akiko make:jest Button Card
// This command generates Jest in your project src/__tests__.

Vue

akiko make:vue Button Card ProductList
// This command generates Vue files in your project src/.
akiko make:comp-v Button Card ProductList
// This command generates Vue components in your project src/components.
akiko make:page-v About Contact Home
// This command geneates Vue pages in your project src/views.
akiko make:hook-v useSearch useFetch
// This command generates custom Vue hooks in your project src/hooks.
akiko make:jest Button Card
// This command generates Jest in your project src/__tests__.

Svelte

akiko make:svelte Button Card ProductList
// This command generates Svelte files in your project src/.
akiko make:comp-s Button Card ProductList
// This command generates Svelte components in your project src/components.
akiko make:page-s About Contact Home
// This command geneates Svelte pages in your project src/pages.

Web Search

akiko google "React Tutorial"

google Search URL: https://www.google.com/search?q=React%2BTutorial

akiko youtube "React Tutorial"
akiko github "React Tutorial"

This command search "React Tutorial" on (google, youtube, github) search.

Motivational Quote

akiko quote

Random Quote:
The best way to predict the future is to create it. - Peter Drucker

License

Under the MIT License