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

swarm-animation

v0.0.95

Published

Reusable, performant CSS animations and js helpers, React-friendly

Downloads

44

Readme

swarm-animation

npm version Build Status Coverage Status

Reusable animation CSS and js for web, React friendly http://meetup.github.io/swarm-animation/

Goals

Broadly, swarm-animation's purpose is to provide reusable and performant animations to be used on web.

The vision is, for example, if we want an animation for a popover to show and hide, we already have CSS classes and a javascript function to apply these.

The focus of the project is on providing CSS animations.
There is need for animations applied with JS as well, esp if we can get them to be more performant using methods like FLIP.
Javascript utilities for applying and removing css classes in a standard way will also be provided.

What about React?

All of these should work with React as well. React can apply css animations from swarm-animation if their names follow certain convention.
Whatever css classes we develop, we can also make sure they conform to the naming convention (with a mixin possibly). Rather than use another external lib at the moment lets see if we can develop animations that fit our needs for both classic and new Meetup.

Installation

  1. clone the repo
  2. from inside the repo directory, run yarn install

Building the project

grunt or grunt compile builds the sass. dist/animation.css and dist/swarmAnimation.js are then available for use in your project.

grunt test compiles the test js and starts a webserver at localhost:8888. More about tests in the Testing section.

grunt docs compiles the sass and builds the docs for the gh-pages branch. grunt local-docs compiles the sass and builds the docs, but does not push to gh-pages. It starts a webserver at localhost:8111. More about docs in the Documentation section.

Development

css

The sass files live in the root of src/ for now.
animation.scss imports sass partials for different responsibilities as the project grows.
Future partials can be made for opacity, loaders, entering/leaving, scale, for example.

js

The src/js/swarmAnimation.js file contains javascript functions that you can use in your js to run certain animations/apply css based on user interaction.
Add to this file if you want to add javascript that should apply classes on click, change, load, etc.
Anything added will need to be tested. See Testing.

Testing

We need test coverage for all of our js animation helpers.
Travis CI runs these jasmine tests for the repo.
Test specs live under test/specs. Write your specs in Jasmine, using es6, here.

running

In development, use grunt test to run the tests.
This command calls compile and copies over compiled js and css to the test directory. It also calls webpack:test to use babel to create test/build/spec_test.js out of your specs.

A server is run and kept alive.
You can navigate to http://localhost:8888/test/build/SpecRunner.html to see the output (also shown on command line).

Changes to the test spec are watched and recompiled

Documentation

The docs can be seen locally or here https://meetup.github.io/swarm-animation/. We use highlightjs and pushy to provide code colors and a side menu, respectively.

building docs

docs/src has the assets, css and js for the documentation. swarmAnimation css and js are moved into docs/dest along with src files with the build task.

grunt local-docs compiles the sass, js and builds the docs with (seldon)[https://github.com/meetup/seldon] You should then be able to open your browser to preview the docs at localhost:8111.

grunt docs compiles the sass and builds the docs for the gh-pages branch and pushes

Changes to the docs are watched and recompiled

adding docs

Documentation is added by including doc comments in your scsss (See src/_fade.scss for examples) This is still a work in progress.


Animation catalogue

A list of animations we should have:

fade / opacity (currently needed on landing page, maybe start flow)
expand /collapse (accordions, maybe modals)
loading animations
add/remove (lists of events, attendees)


For resources and articles on animation, check out the wiki