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

@soundworks/helpers

v1.0.0-alpha.11

Published

Set of generic helpers for soundworks applications

Downloads

68

Readme

soundworks | helpers

Set of common helpers for soundworks applications.

Manual Installation

Note that the @soundworks/helpers package is automatically installed when you create an application using the @soundworks/create wizard, so most of the time you should not care to install this package manually. See https://soundworks.dev/guides/getting-started.html for more informations on the soundworks wizard.

npm install --save @soundworks/helpers

API

Table of Contents

browserLauncher

Launcher for clients running in browser runtime.

Examples

import launcher from '@soundworks/helpers/launcher.js'

execute

Allow to launch multiple clients at once in the same brwoser window by adding ?emulate=numberOfClient at the end of the url e.g. http://127.0.0.1:8000?emulate=10 to run 10 clients in parallel

Parameters

  • bootstrap Function Bootstrap function to execute.

  • options object Configuration object. (optional, default {})

    • options.numClients number Number of parallel clients. (optional, default 1)
    • options.width string If numClient > 1, width of the container. (optional, default '20%')
    • options.height string If numClient > 1, height of the container. (optional, default '500px')

Examples

launcher.execute(main, {
  numClients: parseInt(new URLSearchParams(window.location.search).get('emulate')) || 1,
});

register

Register the client in the launcher.

The launcher will do a bunch of stuff for you:

  • Display default initialization screens. If you want to change the provided initialization screens, you can import all the helpers directly in your application by doing npx soundworks --eject-helpers. You can also customise some global syles variables (background-color, text color etc.) in src/clients/components/css/app.scss. You can also change the default language of the intialization screen by setting, the launcher.language property, e.g.: launcher.language = 'fr'
  • By default the launcher automatically reloads the client when the socket closes or when the page is hidden. Such behavior can be quite important in performance situation where you don't want some phone getting stuck making noise without having any way left to stop it... Also be aware that a page in a background tab will have all its timers (setTimeout, etc.) put in very low priority, messing any scheduled events.

Parameters

  • client Function The soundworks client.

  • options object Configuration object. (optional, default {})

    • options.initScreensContainer HTMLElement The HTML container for the initialization screens. (optional, default null)
    • options.reloadOnVisibilityChange boolean Define if the client should reload on visibility change. (optional, default true)
    • options.reloadOnSocketError boolean Define if the client should reload on socket error and disconnection. (optional, default true)

Examples

launcher.register(client, { initScreensContainer: $container });

language

Return the locale strings

Type: object

language

Set the language to be used in the initialization screens. By default, picks language from the browser and fallback to english if not supported. For now, available languages are 'fr' and 'en'.

Type: string

Parameters

  • lang

setLanguageData

Set the text to be used for a given language. Allows to override an existing language as well as define a new one.

Parameters

  • lang string Key correspondig to the language (e.g. 'fr', 'en', 'es')
  • data object Key/value pairs defining the text strings to be used.

getLanguageData

Retrieve the data for a given language.

Parameters

  • lang string Key correspondig to the language (e.g. 'fr', 'en', 'es') (optional, default null)

nodeLauncher

Launcher for clients running in Node.js runtime.

Examples

import launcher from '@soundworks/helpers/launcher.js'

execute

The "execute" function allows to fork multiple clients in the same terminal window by defining the EMULATE env process variable e.g. EMULATE=10 npm run watch-process thing to run 10 clients side-by-side

Parameters

  • bootstrap Function Bootstrap function to execute.

  • options object Configuration object. (optional, default {})

    • options.numClients number Number of parallel clients. (optional, default 1)
    • options.moduleURL string Module url of the calling filr. (optional, default null)

Examples

launcher.execute(bootstrap, {
  numClients: process.env.EMULATE ? parseInt(process.env.EMULATE) : 1,
  moduleURL: import.meta.url,
});

register

Register the soundworks client into the launcher

Automatically restarts the process when the socket closes or when an uncaught error occurs in the program.

Parameters

  • client Function The soundworks client.

  • options object Configuration object. (optional, default {})

    • options.restartOnError boolean Define if the client should restart on uncaught errors. (optional, default false)
    • options.restartOnSocketClose boolean Define if the client should restart on socket disconnection. (optional, default true)

Examples

launcher.register(client);

Credits

https://soundworks.dev/credits.html

License

BSD-3-Clause