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

@flippydisk/tools

v1.0.1

Published

A set of JS utilities to help with web development

Downloads

199

Readme

@page @flippydisk/tools @group Debug 0 Debug @group Disable 1 Disable @group Json 2 Json @group Lang 3 Lang @group Tests 4 Tests

Flippydisk Web Tools Build Status

Overview

Flippydisk tools are designed to help front end developers build projects with a few of the general necessities that are extremely helpful in the process. Debugging, graceful error messages, url search tools, ES6 Ajax calls, and similar items are what this suite focuses on. 1.0.0 will include a debugger, error logger and the ability to disable an entire script from a URL param. More features will be added in future versions.

Basically, I kept finding myself needing these items over and over again, project after project. So much so that I finally decided to put them all together in a suite that can be imported via NPM.

Installation

In your project's directory:

npm i @flippydisk/tools --save-dev

That's it! Once you have it installed in your project, see individual component's README files for their own use.

Ex. Debug:

import * as tools from '@flippydisk/tools';
const debug = new tools.Debug({ debug: false, control: 'MyControl' });

Tests

Each component will have its own tests which will also run as a full Flippydisk tools test suite.

npm test

Output:

$ npm run test

> @flippydisk/[email protected] lint
> cross-env eslint ./src/**/*.js

 PASS  src/tests/tests.spec.js
 PASS  src/debug/debug.spec.js
 PASS  src/disable/disable.spec.js
 PASS  src/json/json.spec.js
 PASS  src/lang/lang.spec.js
-----------------------|---------|----------|---------|---------|-------------------
File                   | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
-----------------------|---------|----------|---------|---------|-------------------
All files              |   95.98 |    90.53 |   95.24 |   96.61 |
 src                   |       0 |        0 |       0 |       0 |
  index.js             |       0 |        0 |       0 |       0 |
 src/debug             |   98.31 |    90.48 |     100 |     100 |
  debug.js             |   98.31 |    90.48 |     100 |     100 | 18-41,44,61,72,87
 src/disable           |   90.32 |       75 |     100 |      90 |
  disable.js           |   90.32 |       75 |     100 |      90 | 83-85
 src/json              |   92.59 |    88.46 |   77.78 |      94 |
  ajax.js              |      85 |    92.31 |      75 |   84.21 | 53-54,62
  json.js              |       0 |        0 |       0 |       0 |
  json.mocks.js        |     100 |      100 |     100 |     100 |
  promise.js           |    87.5 |      100 |   66.67 |     100 |
  responder.js         |     100 |       75 |     100 |     100 | 20-21
 src/lang              |     100 |    96.67 |     100 |     100 |
  filterHTMLTags.js    |     100 |      100 |     100 |     100 |
  getPropertySafely.js |     100 |    93.75 |     100 |     100 | 33
  getStringSafely.js   |     100 |      100 |     100 |     100 |
  isEmptyObject.js     |     100 |    91.67 |     100 |     100 | 14
  isEmptyString.js     |     100 |      100 |     100 |     100 |
  isNull.js            |     100 |      100 |     100 |     100 |
  isNullish.js         |     100 |      100 |     100 |     100 |
  isNumber.js          |     100 |      100 |     100 |     100 |
  isObject.js          |     100 |      100 |     100 |     100 |
  isStringy.js         |     100 |      100 |     100 |     100 |
  isType.js            |     100 |      100 |     100 |     100 |
  isUndefined.js       |     100 |      100 |     100 |     100 |
  isValidObject.js     |     100 |      100 |     100 |     100 |
  lang.js              |       0 |        0 |       0 |       0 |
 src/tests             |     100 |      100 |     100 |     100 |
  tests.js             |     100 |      100 |     100 |     100 |
-----------------------|---------|----------|---------|---------|-------------------

Test Suites: 5 passed, 5 total
Tests:       57 passed, 57 total
Snapshots:   0 total
Time:        3.962 s
Ran all test suites.

Documentation

Each component will also have its own README file.