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

@gabrielp03/greenlight

v0.0.2

Published

[![CircleCI](https://dl.circleci.com/status-badge/img/circleci/D4bACYgELziWRdvGQX58ng/DbxnmyVKxzouDZg5RnK6N7/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/circleci/D4bACYgELziWRdvGQX58ng/DbxnmyVKxzouDZg5RnK6N7/tree/main)

Downloads

7

Readme

CircleCI

GreenLight.js

A minimal JavaScript framework for boosting production on small-scale web projects.

What does it do?

GreenLight offers a varierty of directives to control and react to the changes with as little effort as possible. All you have to do is declare your structure in HTML and handle the events with JavaScript. Out-of-the-box support for stores, data binding, memoization and error-handling.

Let us handle the data changes in your project

Stop worrying about what changes and where. Focus on how to utilize the data changed in your advantage. One of the main features of GreenLight is the reactivity behind it on each component state change.

Let's see an example

We setup a form that binds the inputs to our local controller store.

<form gl-controller="loginForm">
  <input type="text" placeholder="Username" gl-bind="username" />
  <input type="password" placeholder="Password" gl-bind="password" />
  <button type="submit" gl-on="submit:loginFormSubmit">Login</button>
</form>

We get the form controller and add an event called loginFormSubmit as we setup in the HTML. Here, we only log the username and password in the console but the possibilities are endless.

const LoginFormController = GreenLight.controller("loginForm");

LoginFormController.on("loginFormSubmit", (e) => {
  const FormState = LoginFormController.$store.get();

  console.log(FormState.username, FormState.password);
});

Why?

This library started as a need and want to combine AlpineJS and AngularJS and get the best out of both worlds -> JS behavior in markup with extended support for writing scripts, templates and handling logic outside of HTML.

Getting started

You can add the script tag into your website and start with only one command:

GreenLight.init(appRoot);

With this command, GreenLight will hook on to the element provided and will attach itself to each element with a directive. Here is an example:

<html>
  <body>
    <div id="app-root">
      <div gl-controller="GettingStarted">
        <div gl-bind="myText"></div>
      </div>
    </div>
    <script src="greenlight.min.js"></script>

    <script>
      const appRoot = document.getElementById("app-root");

      GreenLight.init(appRoot);
      GreenLight.$store.set("myText", "Getting started");
    </script>
  </body>
</html>