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

stupidscript

v1.0.1

Published

Alle Zeilen enden mit einem `-`. Nur Vanilla JS code (Mit Prefix `#lassmich`) kann ohne `-` verwendet werden.

Downloads

3

Readme

Infos

Alle Zeilen enden mit einem -. Nur Vanilla JS code (Mit Prefix #lassmich) kann ohne - verwendet werden.

Variablen

Variablen werden so erstellt: NAME_DER_VARIABLE ist WERT- Beispiele: kaffe ist "lecker"- alter ist 10-

jahr ist 2023-
geboren ist 2000-
alter ist jahr - geboren-

Print to Console

Um etwas in der Konsole anzeigen zu lassen kann man die sag Methode verwenden: sag WERT- Beispiele: sag "Kaffe ist lecker!"- sag alter"-

jahr ist 2023-
geboren ist 2000-
alter ist jahr - geboren-
sag alter-

Comments

Kommentare werden erstellt indem die Zeile mit #vergessen beginnt. Beispiel: #vergessen Das ist ein kommentar!

Imports

Andere Klassen können importiert werden. Dies funktioniert nur mit übersetzten klassen! Als auch können derweil nur .js Klassen importiert werden. Beispiel: hol dir :erstesModul, zweitesModul: von "./module.js" hol dir erstesModul von "./module.js"

Keywords

Es gibt verschiedene keywords. wahr, falsch, und, oder Es gibt noch ein paar weitere geheime!

Constants

Es gibt vordefinierte Konstanten. WelcherTagIstGrade?: Der aktuelle Tag WelcherMonatIstGrade?: Der aktuelle Monat WelchesJahrIstGrade?: Das aktuelle Jahr

If Statements

Abfragen werden mit wenn ... mach- gebildet und enden mit wennfertig- Beispiele:

wenn 5 ist größer als 2 mach-
    sag "5 ist größer als 2! WOW!"-
wennfertig-
wenn 5 ist größer als 2 oder 5 ist gleich wie 5 mach-
    sag "5 ist größer als 2 oder genauso groß wie 5! WOW!"-
wennfertig-

VanillaJS

Es gibt die möglichkeit normalen JavaScript code zu nutzen. Jede zeile muss hierfür mit #lassmich beginnen. Beispiel:

#lassmich const pierre = "cool";
#lassmich if (pierre === "cool") {
#lassmich   console.log("Pierre ist cool!");
#lassmich }