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

@area17/a17-helpers

v3.3.1

Published

A js helper package

Downloads

1,374

Readme

A17 JS Helpers

https://nodei.co/npm/@area17/a17-helpers.png?downloads=true&downloadRank=true&stars=true

Introduction

A collection of documented vanilla JS widgets.

Originally written as we transitioned away from using jQuery and now just a useful time saver for

Setup

  1. Install via npm:
$ npm install @area17/a17-helpers

Import all helpers into your JavaScript by:

import helpers from '@area17/a17-helpers';

or, cherry pick individual helpers by either:

import { extend } from '@area17/a17-helpers';

or:

import extend from '@area17/a17-helpers/src/extend';

And then use the helper:

const obj1 = { foo: "bar", qux: "foobar" };
const obj2 = { foo: "baz" };
const merged_obj = extend(obj1, obj2);

Whats the difference?

Importing from @area17/a17-helpers with either import helpers from '@area17/a17-helpers' or import { extend } from '@area17/a17-helpers' will bring in all the JS helpers into your bundle and then you will need to use tree shaking in either Webpack or Rollup to remove helpers you don't use.

Cherry picking from the source file will bring in just the chosen helper and so you won't need to tree shake your production builds.

If you are using Webpack to compile your code and you are using it in production mode, it is likely doing this treeshaking and removing unused code for you automatically.

TypeScript

When modifying or creating JS helpers, dont forget to generate declaration files of your helpers so these can be imported into TS projects.

Please run : npm run types

This will add the declaration files at the same place of your JS files.

Major revision notes:

v2.0.0+

From v2.0.0 onwards drops IE11 support but maintains Safari 10+, Edge 12+, Chrome 24+ and FireFox 29+ support. If you need IE11 support use v1.0.3 and if you need IE9 level support, use v0.8.4.

v3.0.0+

oritentationChangeFix renamed to orientationChangeFix.

manageBehaviors and createBehaviors have been removed - behaviors and behavior management has been split out into its own library A17-Behaviors. fontLoadObserver removed, use https://github.com/zachleat/fontfaceonload lazyLoad removed, use use https://www.npmjs.com/package/@area17/a17-lazyload

v3.1.0+

Added:

v3.2.0+

Added:

Documentation and demos

Contribution

Feel free to add any vanilla JS helpers that will be common to many projects and save someone some time working them out in the future. The main aims are no dependencies, small elegant code and high potential sharing across sites.

Code of Conduct

AREA 17 is dedicated to building a welcoming, diverse, safe community. We expect everyone participating in the AREA 17 community to abide by our Code of Conduct. Please read it. Please follow it.

Tests

Written using Jest with tests in /test/. To run:

$ npm run test