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

@trozlabs/edc

v0.1.1

Published

Every Day Code for JavaScript

Downloads

12

Readme

EDC (Every Day Code)

npm i @trozlabs/edc

Type Class


const { Type } = require('@trozlabs/edc');

/************************************************
 * Type.instanceOf(obj)
 ************************************************/

Type.instanceOf(async function myAsyncFunction() {}, 'myAsyncFunction') // true
Type.instanceOf([]) // true
Type.instanceOf(new SomeExampleClass(), 'Array') // false
Type.instanceOf(new SomeExampleClass(), 'SomeExampleClass') // true
Type.instanceOf(true, 'Boolean') // true

/************************************************
 * Type.getName(obj)
 ************************************************/

Type.getName(async function myAsyncFunction() {}) // myAsyncFunction
Type.getName([]) // Array
Type.getName(new SomeExampleClass()) // SomeExampleClass
Type.getName(SomeExampleClass) // SomeExampleClass
Type.getName(true) // Boolean

/************************************************
 * Type.get(obj)
 ************************************************/

Type.get(async function myAsyncFunction() {}) // AsyncFunction
Type.get([]) // Array
Type.get(new SomeExampleClass()) // Class
Type.get(SomeExampleClass) // Class
Type.get(true) // Boolean

/************************************************
 * Type.isSimpleObject(obj)
 ************************************************/

Type.isSimpleObject(null) // false
Type.isSimpleObject(undefined) // false
Type.isSimpleObject([]) // false
Type.isSimpleObject(new Map()) // false
Type.isSimpleObject({ key: 'val' }) // true

/************************************************
 * Type.getMeta(obj)
 ************************************************/

Type.getMeta(async function myAsyncFunction() {}) 
// { name: myAsyncFunction, type: AsyncFunction, primitive: function, empty: false }
Type.getMeta([]) 
// { name: Array, type: Array, primitive: object, empty: false, value: [] }
Type.getMeta(new SomeExampleClass()) 
// { name: SomeExampleClass, type: Class, primitive: object, empty: false, value: {} }
Type.getMeta(SomeExampleClass) 
// { name: SomeExampleClass, type: Class, primitive: object, empty: false, value: {} }
Type.getMeta(true) 
// { name: Boolean, type: Boolean, primitive: boolean, empty: false, value: true }

/************************************************
 * Type.is<Type>(obj)
 ************************************************/

Type.isSymbol(someVar) // true/false
Type.isBoolean(someVar) // true/false
Type.isDate(someVar) // true/false
Type.isNumber(someVar) // true/false
Type.isInteger(someVar) // true/false
Type.isFloat(someVar) // true/false
Type.isBigInt(someVar) // true/false
Type.isPrime(someVar) // true/false
Type.isClass(someVar) // true/false
Type.isFunction(someVar) // true/false
Type.isAsyncFunction(someVar) // true/false
Type.isGeneratorFunction(someVar) // true/false
Type.isArguments(someVar) // true/false
Type.isPromise(someVar) // true/false
Type.isWorker(someVar) // true/false
Type.isString(someVar) // true/false
Type.isUndefined(someVar) // true/false
Type.isNull(someVar) // true/false
Type.isObject(someVar) // true/false
Type.isMap(someVar) // true/false
Type.isSet(someVar) // true/false
Type.isArray(someVar) // true/false
Type.isInt8Array(someVar) // true/false
Type.isUint8Array(someVar) // true/false
Type.isUint8ClampedArray(someVar) // true/false
Type.isInt16Array(someVar) // true/false
Type.isUint16Array(someVar) // true/false
Type.isInt32Array(someVar) // true/false
Type.isUint32Array(someVar) // true/false
Type.isFloat32Array(someVar) // true/false
Type.isFloat64Array(someVar) // true/false
Type.isBigInt64Array(someVar) // true/false
Type.isBigUint64Array(someVar) // true/false
Type.isError(someVar) // true/false
Type.isEmpty(someVar) // true/false
Type.isSimpleObject(someVar) // true/false
Type.isIterable(someVar) // true/false
Type.isBooleanLike(someVar) // true/false

Text Class

const { Text } = require('@trozlabs/edc');

Text.toCamel('Text to Transform') // textToTransform
Text.toSnake('textToTransform')   // text_to_transform
Text.toKebab('text_to_transform') // text-to-transform
Text.toUpper('text-to-transform') // TEXT-TO-TRANSFORM
Text.toLower('TEXT-TO-TRANSFORM') // text-to-transform
Text.toTitle('text-to-transform') // Text To Transform
Text.toWords('textToTransform')   // [ 'Text', 'To', 'Transform' ]

objectRemap()

const { objectRemap } = require('@trozlabs/edc');

const square = {
    ID: 1,
    CAT: 'products',
    NAME: 'A',
    DESCRIPTION: 'First Object',
    CREATED_DATE: new Date().toJSON(),
    UPDATED_DATE: new Date().toJSON()
}

// but you want it to look like this...
const newObject = objectRemap(square, {
    id: 'ID',
    category: 'CAT',
    slug: [ 'ID', '-', 'CAT', '_', 'NAME' ],
    name: 'NAME',
    desc: 'DESCRIPTION',
    createdAt: 'CREATED_DATE',
    updatedAt: 'UPDATED_DATE'
});

Example result:

{
    id: 1,
    category: 'products',
    slug: '1-products_A',
    name: 'A',
    desc: 'First Object',
    createdAt: '2022-04-20T21:58:20.970Z',
    updatedAt: '2022-04-20T21:58:20.970Z'
}

objectQuery()

const { objectQuery } = require('@trozlabs/edc');
const object = require('data.json'); // used data from https://reddit.com/r/popular.json

// search by key and/or value either are optional.
objectQuery(object, {
    // property: 'permalink',
    value: '/r/science/comments/u7urps/donating_blood_regularly_can_reduce_toxic_forever/'
});

Example result:

[
    {
        depth: 5,
        key: 'permalink',
        val: '/r/science/comments/u7urps/donating_blood_regularly_can_reduce_toxic_forever/',
        path: [ '.data', '.children', '[12]', '.data', '.permalink' ],
        namespace: '.data.children[12].data.permalink',
        context: { the object result was contained in }
    }
]

fsTree()


const { fsTree } = require('@trozlabs/edc');

fsTree('../').then(map => {
    console.log(map);
});

fsTree('.', {
    ignore: ['node_modules'],
    toArray: true,
    maxDepth: 3
}).then(array => {
    console.log(array);
});

Example result:

[
    {
        dev: 16777234,
        mode: 16877,
        nlink: 6,
        uid: 501,
        gid: 20,
        rdev: 0,
        blksize: 4096,
        ino: 56697446,
        size: 192,
        blocks: 0,
        atimeMs: 1650489395814.3723,
        mtimeMs: 1650489331697.1792,
        ctimeMs: 1650489331697.1792,
        birthtimeMs: 1650413396244.5251,
        atime: 2022-04-20T21:16:35.814Z,
        mtime: 2022-04-20T21:15:31.697Z,
        ctime: 2022-04-20T21:15:31.697Z,
        birthtime: 2022-04-20T00:09:56.245Z,
        root: '/',
        dir: '/absolute/path/to/edc',
        base: 'test',
        ext: '',
        name: 'test',
        index: 7,
        depth: 1,
        type: 'directory',
        pathname: '/absolute/path/to/edc/test',
        total: 4,
        files: [ [Object], [Object], [Object], [Object] ]
    },
    {...}, 
    {...}, 
    ...
]

More Coming...