Git Product home page Git Product logo

kb-path's Introduction

Synopsis

Provides an interface for traversing Javascript Object. Makes dynamic lookups and modification easy.

Code Example

import jsonpath from 'kb-path'

const model = {
  email: "[email protected]",
  profile: {
    favColor: "blue",
    dogs: [
      { name: "bash", sex: "male", age: 4 },
      { name: "etc", sex: "female", age: 4 },
      { name: "ele", sex: "female", age: 3 }
    ],
    website: {
      title: "My Github Repo",
      url: "https://github.com/de44"
    }
  }
}

jsonpath.path(model, '$.email') // "[email protected]"
jsonpath.path(model, '$.profile.dogs[0].name') // bash
jsonpath.set(model, '$.profile.username', "de44") // model.profile.username = "de44"

Motivation

I use a very common utility lib in java and wanted to port this api/functionality to JS.

Installation

npm i -s kb-path

API Reference

// TODO: jsdoc

Tests

Build Status Coverage Status

npm test

License

MIT

kb-path's People

Contributors

de314 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.