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

sedd-es

v1.0.0

Published

Create image docker build --rm -t sedd-es . Create container docker run --name sedd-es -it -p 2113:2113 -p 1113:1113 sedd-es Start container docker start sedd-es Delete all containers docker rm $(docker ps -a -q) Delete all images dock

Downloads

2

Readme

Stuff to know

  1. .aws file required with aws creds
    [default]
    aws_access_key_id=<KEY>
    aws_secret_access_key=<SECRET>
  2. Build the image
    1. docker build --rm -t sedd-es .
  3. Run the image
    1. docker run --name sedd-es -it -p 2113:2113 -p 1113:1113 sedd-es
  4. Create the image with backup data from aws s3://sedd-backup/
    1. docker run --name sedd-es -it -p 2113:2113 -p 1113:1113 sedd-es <FILENAME>
  5. Restart the image
    1. docker start sedd-es
  6. Enter shell of image
    1. docker exec -it sedd-es bash

EventStore default credentials

  • admin
  • changeit

Hyper commands

  1. Take docker image from local machine and push to hyper
    1. hyper load -l <IMAGE NAME>:latest
    2. hyper load -l sedd-es:latest
  2. Run image - very similar to Docker
    1. hyper run -d --name sedd-es -p 2113:2113 -p 1113:1113 <IMAGE NAME>
    2. hyper run -d --name sedd-es -p 2113:2113 -p 1113:1113 sedd-es

AWS command to cp from s3

  1. aws s3 cp s3://sedd-backup/<S3 FILE NAME> <LOCAL FILE NAME>
  2. aws s3 cp s3://sedd-backup/es_2018_Jun_12:49:47.zip backup.zip

AWS create-registry output

{
    "repository": {
        "registryId": "035892600013",
        "repositoryName": "sedd-es",
        "repositoryArn": "arn:aws:ecr:us-west-1:035892600013:repository/sedd-es",
        "createdAt": 1530008252.0,
        "repositoryUri": "035892600013.dkr.ecr.us-west-1.amazonaws.com/sedd-es"
    }
}

AWS commands to create docker image

  1. aws ecr create-repository --repository-name sedd-es
  2. docker tag sedd-es 035892600013.dkr.ecr.us-west-1.amazonaws.com/sedd-es
  3. aws ecr get-login --no-include-email
  4. docker push 035892600013.dkr.ecr.us-west-1.amazonaws.com/sedd-es
  5. DELETING image
    1. aws ecr delete-repository --repository-name sedd-es --force