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

escmd

v1.0.6

Published

ElasticSearch command line

Downloads

25

Readme

escmd

ElasticSearch command line - create, delete, copy, manage indices and aliases

npm install -g escmd

$ esc

alias - Create an <alias> for an <index-pattern>
cp - copy <src> index to <dest> index. Use --nomappings to copy docs only
info - show basic info about the host (useful to check you're working on teh right cluster)
ls - list indices matching optional pattern. Use --verbose for more info on each index
mv - move <src> index to <dest> index. Use --nomappings to move docs only (not mappings)
rm - delete <index, alias or pattern...>. WARNING: cannot be reversed
Use . to separate commands

Options

--host=<url> Set the host name for all subsequent operations

--verbose Generate noisy output (depends on the command(s) suuplied, if any)

--settings.index=number_of_shards:X,number_of_replicas:Y Set the default values when an index is created

--trace Show detailed ES library logging

A single . can be used to separate commands. For example, copy, alias and list the indices:

$ esc cp twitter twatter . alias twotter twatter . ls

twatter
twitter
twotter -> twatter

Contributing

Add new commands in the tools/ dieectory, using the same name as the command you want to create. The module should export a single async function which receives four parameters:

  • an Elasticsearch client object (see https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html)
  • an array of string arguments
  • the 'config' object, representing the settings perserved in ~/.esc.json
  • the 'flags' object, representing the values passed in arguments beginning with --

It's nice to set module.exports.help to an informative string do esc by itself can describe your command.

Your function should run to completion (await is allowed) and return. The return value is not used. Exceptions are handled by esc and you don't need to handle everything - esc will try and print something useful in any case. Throwing a string (as opposed to an Error object) will terminate execution and print the string to stderr.

Here's tools/alias.js to show you how simple it is.

/* ES alias - create an alias from 1 or more indices */

module.exports = async function(es,args,config,flags) {
	if (args.length < 2) throw module.exports.help ;

	await es.indices.putAlias({
		name:args[0],
		index:args.slice(1)
	});
}

module.exports.help = "Create an <alias> for an <index-pattern>".magenta ;