Best of CLIDecember 2022

  1. 1
    Article
    Avatar of redstRed Stapler·3y

    The Difference between npm and npx command

    NPM vs NPX is the package manager for the Node.js JavaScript JavaScript runtime. NPM is used to install and manage packages (i.e., libraries, frameworks, tools, etc.) that are published on the npm registry. This can make it easy to confuse the two, especially if you are not familiar with.

  2. 2
    Article
    Avatar of asayerasayer·3y

    How to deploy a Next.js app to production

    Next.js is a robust framework for building static and Server-Side Rendering (SSR) applications. It's one thing to create a Next.js application and another to deploy it to a website and take advantage of its SEO and SSR capabilities.

  3. 3
    Article
    Avatar of vscodeVisual Studio Code·3y

    Making Remote Development Even Better

    Visual Studio Code has a built-in command-line interface (CLI) that lets you control how you launch and manage the editor. The updated CLI is built into the latest VS Code release and is also available for standalone install.

  4. 4
    Article
    Avatar of medium_jsMedium·3y

    Docklight: a GUI that visualizes your Docker container metrics

    Docklight is a GUI that visualizes your Docker container metrics. It is an open-source tool that communicates directly with your Docker Daemon. Docklight runs on the localhost of your machine, and once clicked on, our metric pages immediately pull streams of information from your Daemon and display them in clean, beautiful, readable charts.

  5. 5
    Article
    Avatar of glcGolang News·3y

    A Golang based SQL console for API queries

    The Steampipe community has grown a suite of plugins that map APIs to tables. The interactive query shell is one way you can query those tables. You can run queries on the command line and include them in scripts. Other commands run benchmarks, launch Steampipes as a service, and start the dashboard server.

  6. 6
    Article
    Avatar of lnLaravel News·3y

    Supercharging Your Artisan Commands With Termwind

    Termwind is a PHP package created and maintained by Nuno Maduro (and other awesome contributors such as Francisco Madeira) It allows you to use Tailwind-like CSS classes in your PHP code to add styling to your output. To get started with using Termwind in your Laravel apps, you'll need to install it using Composer.

  7. 7
    Article
    Avatar of hrbHEARTBEAT·3y

    Understanding Awk for Text Processing

    A practical guide on pattern scanning with a text-processing language Introduction Awk is a powerful data processing programming language included by default in every *nix system. Awk was created in 1977 following the success of other line processing tools like and AWK stands for Aho, Kernighan, and Weinberger.

  8. 8
    Article
    Avatar of medium_jsMedium·3y

    NestJS Part — 1. What is NestJS

    NestJS is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with and fully supports TypeScript, and combines elements of OOP (Object Oriented Programming) and FP (Functional Programming) NestJS allows developers to use the myriad of third-party modules.