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

svelte-gym

v0.2.1

Published

Rapidly create and exercise your Svelte components.

Downloads

392

Readme

svelte-gym

Rapidly create and exercise your Svelte components.

image

Why Svelte Gym?

Developing and testing components should be easy! Svelte Gym provides a playground environment to exercise your components and ensure they are responding correctly.

  • How does the component respond when the parent element gets larger/smaller both vertically / horizontally?
  • Is font size on the parent element respected?
  • Does text overflow in the expected way?
  • Is bad data handled gracefully or leak to the UI i.e null, NaN, Inf, undefined

Testing

Svelte Gym makes it easy to replicate component state by creating permalinks for a component's state.

For example:

  • http://localhost:5174/?__width=262px&__height=221px&spinner=false&label=Test+Text#
  • http://localhost:5174/?__width=262px&__height=221px&spinner=true&label=Test+Text#

Problematic scenarios can now be easily replicated and shared with team members. It also makes visual regression testing using a tool such as BackstopJS a breeze.

URL Param and Props Structure

For more complex components it may be necessary to create generators, rather than control the specific content you most likely want to control the number of elements. In those cases best prefix properties with a single underscore to help make intentions clear. Be aware that Svelte-Gym reserves a double underscore prefix.

Usage

npm install -D svelte-dev
pnpm install -D svelte-dev
bun install -D svelte-dev

Create a gym route for each component containing the following:

<script>
    import { TestHarness, restoreProps, GymCheckbox, GymLog, GymTextbox } from "svelte-gym";

    let props = {
        //Define your component properties and callbacks
    }

	// properties are automatically restored from the URL Params
	restoreProps(props);

</script>

<TestHarness>
	<svelte:fragment slot="componentToTest">
		<YourComponent {...props} />
	</svelte:fragment>

	<svelte:fragment slot="controls">
		<!-- Add GymControls to exercise custom properties of your component -->
		<!-- Use the hideExtra param to hide options such as null, undefined etc. -->
	</svelte:fragment>
</TestHarness>

JSON Path Support

To allow testing of components with more complex structures a basic form of JSON Path is supported. i.e. root.subA.subB, this also works with arrays root.myArray.0

Support The Project!

If Svelte-Gym saves you time please consider supporting it:

Enterprise Support

We offer support to startups and enterprise, subscribe here

Training / Workshops

Tap Here to book training for your team either online or in-person.

License

MIT