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

@lukasbach/scripts

v0.0.18

Published

Various scripts for doing stuff fast

Downloads

86

Readme

@lukasbach/scripts

Collection of easy-to-use scripts and tools

This is a collection of various small CLI scripts and tools, that I made available for easy use. The scripts are deployed as NPM package, so you can call them with npx or install them globally with npm.

Most of the scripts relate to repetitive tasks with NodeJS and React development, such as setting up certain frameworks or scaffolding files, but there are other scripts such as ffmpeg tasks or file system utilities. There are some that are specific to parts of my personal workflow, but also quite a few that should be interesting to general use.

You can find a full list of available scripts on scripts.lukasbach.com.

Usage

Use the command listed on each script page to run it:

npx @lukasbach/scripts react/fc

Alternatively, you can install the tool globally and run the scripts with ldo:

npm i -g @lukasbach/scripts
ldo react/fc

Some scripts also have shortcuts. For example, the react/fc script can also be run with ldo fc. You can edit shortcuts with ldo edit-shortcuts. All shortcuts that are available by default are listed in the Shortcuts Page.

It is also possible to call the script without any parameters, and it will interactively search all available scripts.

Demo

Scripts

The following scripts are currently implemented:

  • update - Update @lukasbach/scripts to the latest version
  • pr - Checks your GitHub events to find branches you recently pushed to, anddisplays a link to create a PR from that branch.Must be logged into GitHub CLI.
  • normalize-json - Runs JSON.stringify(JSON.parse()) on a file to normalize it. Normalizes with two spaces.
  • homepage - Set's up the configuration file for this repo so that this project comes up in my list of projects on lukasbach.comOnly works for repositories hosted in the github.com/lukasbach account.@private
  • help - Prints help information for the tool. Append a script name to get help for that script.
  • find - Search a script by name
  • edit-shortcuts - Edit shortcuts for any scripts supported by @lukasbach/scripts that can later be used instead ofthe full script name. If the shortcuts file doesn't exist yet, it will be offered to be created.
  • deduplicate-gitignore - Removes duplicate entries in a gitignore file
  • compare-folders - Compares two folders and lists missing items and files that are different. Supportscomparing files based on either file size, file size and edit date or file hash. Forhashing, SHA1 is used which is fa...
  • compare-files - Compares two files to check if they are different. Supportscomparing files based on either file size, file size and edit date or file hash. For hashing, SHA1 is usedwhich is fast and works well for la...
  • react/vitest-hook - Template for a react-based vitest test suite file for testing a react hook.
  • react/vitest-component - Template for a react-based vitest test suite file for testing a component.
  • react/forwardref - Creates a React Functional Component using forwardRef.
  • react/fcsimple - Creates a React Functional Component without any props.
  • react/fcprops - Creates a React Functional Component with dedicated props type.
  • react/fcchildren - Creates a React Functional Component with a PropsWithChildren prop type.
  • react/fc - Creates a React Functional Component.
  • node/yarn-nodemodules - Configures the .yarnrc.yml file to use the node-modules linker, and adds the necessary items to .gitignore.
  • node/volta - Pins the LTS version of Node.js and latest version of the currently active package manager in use with Volta.
  • node/test - Runs various npm scripts that typically exist for verification purposes, such as build, test and lint.
  • node/setup-tsconfig - Set's up a build configuration with Typescript by configuring the tsconfig.json file and adjusting package.jsonand supporting files.
  • node/setup-publish-fast - Sets up a NPM package release configuration with the package publish-fast.
  • node/setup-esm - Set's up ESM builds for a TS project. This includes updating the tsconfig, package.json, and file imports.
  • node/setup-eslint - Adds my personal ESLint config with @lukasbach/eslint-config-deps to the package setup.
  • node/setup-empty-yarn - Creates a new empty yarn repository.
  • node/setup-crowdin - Sets up a crowdin-based translation configuration for the current project.
  • node/setup-commander - Configures a Typescript project to include dependencies and scaffolding setup for a commander CLI
  • node/normalize-package-json - Normalizes a package.json file and reorderes its properties in a way that is typical.
  • node/kill-all - Kills all node processes. Only works under windows.
  • node/configure-npm-repo - Configures the package.json based on user input. Some settings, like description, are also synced to the Github repo.Also fixes the repo url in the package.json based on the git remote.
  • node/add-js-extensions-in-imports - Replaces all imports in the nodejs package to include .js file extensions. Ignores imports of packages (i.e.non-relative imports), and imports of non-code files. This is part of the the adoption proce...
  • init/node-cli - Initializes a NodeJS based CLI project
  • github/setup-node-verify-action - Sets up a GitHub Action to verify a NodeJS Project
  • github/create-from-local - Creates a new Github repository and pushes the local git folder to that repo, configuring the repo asgit origin in the local repository in the process.
  • fs/tidy-movies -
  • fs/refactor-repos-into-year-folders - Go through a folder of repos, and move them into year folders based on their first-commit date. If a folderhas no git repo, it is ignored. Needs to run in the folder containing the repos.This will mov...
  • fs/fix-number-prefixes - Takes a set of files with numbers, and prefixes the numbers with zeros so they are all the same length.
  • fs/7zip-subfolders - Move a list of folders into 7zip archives with the same name as the folders.
  • ffmpeg/to-gif - Generates a gif file from a video file.
  • ffmpeg/bulk-reduce-bitrate - Uses ffmpeg to reduce the bitrate of all videos matched by a glob. Videos are copied, not replaced.
  • ffmpeg/bulk-flac-to-mp3 - Converts all flac files matched by a glob to mp3.