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

skouerr-scripts

v1.2.1

Published

This JavaScript library allows you to develop your Skouerr blocks, a suite of tools dedicated to designing WordPress themes. This command-line tool enables you to launch the compilation of your blocks and start an HMR (Hot Module Replacement) server for i

Downloads

297

Readme

Skouerr Scripts

This JavaScript library allows you to develop your Skouerr blocks, a suite of tools dedicated to designing WordPress themes. This command-line tool enables you to launch the compilation of your blocks and start an HMR (Hot Module Replacement) server for interactive development. Based on Vite, the Skouerr starter theme facilitates the rapid compilation of your assets within modular blocks, thereby optimizing the performance and modularity of your projects.

Installation

You only need to install one npm module:

  npm install skouerr-scripts 

or

  yarn add skouerr-scripts 

Setup

This CLI provides commands to add to your development scripts in the package.json file of the theme directory.

{
    "scripts": {
        "build": "skouerr-scripts build",
        "watch": "skouerr-scripts watch"
    }
}

Build command

For the build command to execute correctly, the templates.json file must be present at the root of the theme.

Watch Command

When developing multiple projects, you can select a different port for each one.

skouerr-scripts watch -p <PORT>

In the WordPress theme, it is possible to modify the port that will run the development script.

add_filter('wp_sk_scripts_port', function(){
    return <PORT>
})

This project uses Socket.IO, which imposes CORS issues. Therefore, we need to specify a development URL, which defaults to http://localhost. You can modify it using a command-line parameter.

skouerr-scripts watch --dev-url <URL>

Compiling

A script using Chokidar monitors file changes. When a modification is detected, the build scripts are triggered. The build process is managed by ViteJS.

HMR Custom

WordPress and PHP do not offer a native, performant solution for real-time development on a document. Therefore, we have implemented a file reloading system. Events are emitted via Socket.IO to handle reloads and error displays.

Style files

The HTML tags affected by the changes are removed before being re-injected, allowing for style updates.

Script files

JavaScript files are reloaded on every modification, which is not optimal.

Back-end files

PHP, Twig, and other files containing textual content modify the current page using a diff-dom based system. When a new page is fetched via a fetch request, the new elements are injected into the current page.

Contribution

We welcome contributions to this project! If you would like to contribute, please follow the steps below to ensure a smooth integration of your changes.

Feedback

If you have any feedback, please reach out to us at [email protected]