Git Product home page Git Product logo

tracr's Introduction


A javascript library to monitor changes done to your objects! ⚡

Why?

On one of those days, when you called a function with some parameters, and that function called another function, which in turn called an internal library function, and when you checked back your parameters, somehow they changed. Well, this nifty little tool is for those days. When you aren't in the mood for checking every single line while in debugging mode, looking for clues.

How?

This library depends on stack-trace for capturing context. For logging purposes it relies on JavaScript proxies.

                               getTracr
                         +-------------------+
                         |                   |
                         |                   |
Original Object          |                   |              Proxified Object
   +------+              |                   |                +------+
   |      |              |                   |                |      |
   |      +-------------->                   +--------------->+      |
   |      |              |                   |                |      |
   +------+              |                   |                +------+
                         |                   |
                         |                   |
                         +-------------------+




  • getTracr takes your object as an argument and returns a decorated version of your object
  • Everything inside your object will be converted into a proxy.
    • Your object is traversed, if a key is found whose value is an object, then that object is replaced with a proxy
  • If new keys are added after creating the decorated object, those will be tracked too.

Role of proxies:

  • tracr proxies capture the following operations
    • set a key
    • delete a key
  • Whenever aforementioned events occur, suitable actions are taken, like:
    • log the event
    • push to a changeLog

Example:

Output:



Installation

npm install --save object-event-tracr


Documentation:

  • getTracr takes two arguments
    • your original object
    • config object
      • Following configuration is supported
        • traceNewKeys(true)
          • You can turn it off so that new keys aren't tracked
        • logGetCalls(false)
          • To log which keys have been accessed and where
        • maintainChangeLog(false)
          • You can turn it on to get structured response in an array
        • log(true)
          • Turn it off to disable logging to console
        • changeLog([])
          • Pass your array here and when done you'd have the change log stored in this array

Contribution:

Feel free to point out issues and submit PRs if you can.

tracr's People

Contributors

iostreamer-x avatar

Stargazers

GAURAV avatar duke79 avatar Brandon Orther avatar Shrenik Borad avatar Zhiya Luo avatar Abdallah Othman avatar Jason P. Scharf avatar

Watchers

James Cloos avatar  avatar Shrenik Borad avatar  avatar

Forkers

icodein

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.