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

@robot-grimpeur/dev-server

v1.0.0

Published

Ce projet est le serveur de développement pour Raspberry Pi de notre projet. Combiné avec le dev-client, il offre un *REPL* et du *Live-Reload*. Ce projet est fait pour être installé sur *PiOS*.

Downloads

2

Readme

Dev-server

Ce projet est le serveur de développement pour Raspberry Pi de notre projet. Combiné avec le dev-client, il offre un REPL et du Live-Reload. Ce projet est fait pour être installé sur PiOS.

Installation

  1. Connecter le Raspberry à internet
    1. Utiliser raspi-config pour configurer les options de connexion WiFi
    2. Exécuter wpa_cli reconfigure && systemctl restart wpa_supplicant
    3. Noter l'IP retournée par la commande hostname -I | awk '{print $1}'
  2. Installer Node.js
    1. Exécuter curl -sSL https://deb.nodesource.com/setup_16.x | sudo bash -
    2. Exécuter apt install -y nodejs
  3. Installer rg-dev-server
    1. Exécuter npm i -g @robot-grimpeur/dev-server
  4. Créer le service
    1. Créer le fichier /etc/systemd/system/rg-dev-server.service et mettre le contenu suivant:
      [Unit]
      Description=Main service
      After=network.target
      StartLimitIntervalSec=0
      
      [Service]
      Type=simple
      Restart=always
      RestartSec=1
      User=root
      ExecStart=rg-dev-server
      
      [Install]
      WantedBy=multi-user.target
    2. Exécuter systemctl start rg-dev-server && systemctl enable rg-dev-server
  5. Préparer une paire de clefs SSH pour l'usager root
    1. Créer la paire de clefs en exécutant ssh-keygen -t ed25519 sur l'ordinateur client
    2. Modifier le ~/.ssh/config du client pour y ajouter le contenu suivant
      Host %Nom de votre choix%
        HostName %Ip du Raspberry Pi%
        User root
        Port 22
        IdentityFile %Endroit où vous avez sauvegardé la clef privée%
    3. Sur le Raspberry Pi, créer le fichier /root/.ssh/authorized_keys
    4. Exécuter la commande chmod -R 600 /root/.ssh/authorized_keys
    5. Copier la clef publique dans le fichier /root/.ssh/authorized_keys