@area17/a17-helpers
TypeScript icon, indicating that this package has built-in type declarations

3.3.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i @area17/a17-helpers

Weekly Downloads

274

Version

3.3.1

License

MIT

Unpacked Size

373 kB

Total Files

149

Last publish

Collaborators

  • ptrckvzn
  • quentinrenard
  • mrdoinel
  • 13twelve
  • m4n1ok
  • mazinoukah
  • mrtimbrook