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

crisp-path

v1.3.2

Published

DSL path language to finde nodes in JavaScript objects with focus of FRD (find, rule and deliver)

Downloads

82

Readme

Crisp.PathJS

is a DSL Language to finde nodes in JavaScript Objects with focus of FRD (find, rule and deliver)

Build Status NPM Downloads NPM Version

var myObject = Crisp.utilCreate({
    ns: 'util.path'
}).objIni().objData({
    a: {
        b: 'B',
        c: 'C'
    }
});

// find first node of path
myObject.pathNode('a.*:');  // 'B'

// find all nodes of path optional asynchronous
myObject.pathFind({
    path: 'a.*:',
    success: function( e ) {
        console.log('success:', e );
    },
    complete: function( e ) {
        console.log('complete:', e );
    }
});
// logs:
// success: B
// success: C
// complete: [ { data: 'B' }, { data: 'C' } ]

// check of path exists in object
myObject.pathExists('a.*:');  // true

Index Table

Getting Started

Server-Nodes

Use Node Package Manager (npm) to install crisp-path for Node.js and io.js

$ npm install crisp-path
// use package
require("crisp-path");

or use the OpenCrisp UtilJS wraper

$ npm install crisp-util
// use package
require("crisp-util");

Web-Clients

Use Bower to install crisp-path for Browsers APP's and other front-end workflows.

$ bower install crisp-path
<!-- use package -->
<script type="text/javascript" src="dist/crisp-path.min.js"></script>

or use the OpenCrisp UtilJS wraper

$ bower install crisp-util
<!-- use package -->
<script type="text/javascript" src="dist/crisp-util.min.js"></script>

Development

Use Git to clone Crisp.PathJS from GitHub to develop the repository with Grunt

# Clone:
$ git clone https://github.com/OpenCrisp/Crisp.PathJS.git

# Build: test, concat, test, minify, test
$ grunt

# Test: original sourcecode for developer (included in build)
$ grunt t

# Run all test-scripts on Unix
$ sh grunt-tests.sh

Usage

How to use Crisp.PathJS with JavaScript.

Crisp.definePath()

How to use Crisp.definePath( object ) module.

var myObject = { a: 'A', b: 'B' };

// initialice path property functions on myObject
Crisp.definePath( myObject );

// find first node of path string
myObject.pathNode('a:');  // 'A'
myObject.pathNode('b:');  // 'B'
myObject.pathNode('*:');  // 'A'

Crisp.utilCreate()

How to use Crisp.utilCreate( option ) with util.path namespace.

// create object with `util.path` namespace
var myObject = Crisp.utilCreate({
    ns: 'util.path'
}).objIni().objData({ a: 'A', b: 'B' });

// find first node of path string
myObject.pathNode('a:');  // 'A'
myObject.pathNode('b:');  // 'B'
myObject.pathNode('*:');  // 'A'

PathJS function

.pathNode()

Hot to use .pathNode( path OR option ) on myObject.

// find first node of path string
myObject.pathNode('b:');  // 'B'

// or with option.path string
myObject.pathNode({ path: 'b:' });  // 'B'

path (pathNode)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

// find first node of path string
myObject.pathNode('a:');  // 'A'
myObject.pathNode('b:');  // 'B'
myObject.pathNode('*:');  // 'A'

option.path (pathNode)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

// find first node of option.path string
myObject.pathNode({ path: 'a:' });  // 'A'
myObject.pathNode({ path: 'b:' });  // 'B'
myObject.pathNode({ path: '*:' });  // 'A'

option.preset (pathNode)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

// find first node of path string
myObject.pathNode({
  path: 'x:', 
  preset: 'X'
});
// 'X'

myObject.pathNode({
  path: 'x:',
  preset: function() { return 'X'; }
});
// 'X'

myObject.pathNode({
  path: 'x:'
});
// undefined

.pathFind()

Hot to use .pathFind( option ) on myObject.

var myObject = Crisp.utilCreate({
    ns: 'util.path'
}).objIni().objData({ a: 'A', b: 'B' });

myObject.pathFind({
    path: 'a',
    success: function( item ) {
        console.log('Success:', item );
    },
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Success: A
// Complete: [{"data":"A"}]
// End

option.path (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"A"},{"data":"B"}]
// End

option.async (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    async: true,
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// End
// Complete: [{"data":"A"},{"data":"B"}]

option.success (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    success: function( item ) {
        console.log('Success:', item );
    }
});
console.log('End');

// logs:
// Success: A
// Success: B
// End

option.complete (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"A"},{"data":"B"}]
// End

option.start (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    start: 1,
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"B"}]
// End

option.limit (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

myObject.pathFind({
    path: '*',
    limit: 1,
    complete: function( e ) {
        console.log('Complete:', e.List().xTo() );
    }
});
console.log('End');

// logs:
// Complete: [{"data":"A"}]
// End

option.self (pathFind)

create myObject with Crisp.utilCreate() or initalice with Crisp.definePath().

var myArg = {};
myObject.pathFind({
    path: '*',
    self: myArg,
    complete: function( e ) {
        console.log('Complete:', this === myArg );
    }
});
console.log('End');

// logs:
// Complete: true
// End

.pathExists()

Hot to use .pathExists( path ) on myObject.

// check of path string exists in myObject
myObject.pathExists('b');  // true
myObject.pathExists('*');  // true
myObject.pathExists('x');  // false

Path string examples

with callback of complete output

// ## path
// Object.key
'a.b:'                          // [ { data: 'B' } ]
'a.b:toString'                  // [ { data: 'B' } ]

'a:xTo'                         // [ { data: '{"b":"B","c":"C"}' } ]

'x:'                            // []
'a.x:'                          // []

// Array.index
'g.0.h:'                        // [ { data: 'H0' } ]

// ## xEach
// Object.xEach
'a.*:'                          // [ { data: 'B' }, { data: 'C' } ]

// Object.xEach reverse
'a.^*:'                         // [ { data: 'C' }, { data: 'B' } ]

// Array.xEach
'g.*.h:'
// [ { data: 'H0' }, { data: 'H1' }, { data: 'H2' }, { data: 'H3' }, { data: 'H4' }, { data: 'H5' } ]

// Array.xEach reverse
'g.^*.h:'
// [ { data: 'H5' }, { data: 'H4' }, { data: 'H3' }, { data: 'H2' }, { data: 'H1' }, { data: 'H0' } ]

// ## limit
// Object.xEach( start, limit ) start
'a.0~1:'                        // [ { data: 'B' } ]

// Object.xEach( start, limit ) end
'a.-1:'                         // [ { data: 'C' } ]
'a.-1~1:'                       // [ { data: 'C' } ]

// Object.xEach( start, limit ) limit on Object.length
'a.0~10:'                       // [ { data: 'B' }, { data: 'C' } ]
'a.-10~10:'                     // [ { data: 'B' }, { data: 'C' } ]

// Object.xEach( start, limit ) out of range
'a.10~10:'                      // []

// Array.xEach( start, limit ) start
'g.0~2.h:'                      // [ { data: 'H0' }, { data: 'H1' } ]

// Array.xEach( start, limit ) start reverse
'g.^0~2.h:'                     // [ { data: 'H5' }, { data: 'H4' } ]

// Array.xEach( start, limit ) end
'g.-1.h:'                       // [ { data: 'H5' } ]
'g.-1~1.h:'                     // [ { data: 'H5' } ]

// Array.xEach( start, limit ) limit on Array.length
'g.0~10.h:'
'g.-10~10.h:'
'g.-~.h:'
// [ { data: 'H0' }, { data: 'H1' }, { data: 'H2' }, { data: 'H3' }, { data: 'H4' }, { data: 'H5' } ]

// Array.xEach( start, limit ) out of range
// default range 0~10
'g.10~10.h:'                    // []

// find all with filter
'#(h=="H2").i:'                 // [ { data: 'I2' } ]

'a.#(b=="B").c:'                // [ { data: 'C' } ]

'a.#(b=="X").c:'                // []

// find all with specific filter
'+(!:xType("Array")).#:xTo',
// [
// { data: '{"a":{"b":"B","c":"C"},"g":[{"h":"H0","i":"I0"},{"h":"H1","i":"I1"},{"h":"H2","i":"I2"},{"h":"H3","i":"I3"},{"h":"H4","i":"I4"},{"h":"H5","i":"I5"}]}' },
// { data: '{"b":"B","c":"C"}' },
// { data: '"B"' },
// { data: '"C"' }
// ]

// find all with specific filter and second filter
'+(!:xType("Array")).#(:xType("field")):' // [ { data: 'B' }, { data: 'C' } ]

Links