live-check

1.2.0 • Public • Published

live-check

Some case we need check if some elements on the document. so we can use setInterval check this dom length property like this:

  if (dom.length) {
    // do something
  }

if dom on the document you can write your logic.

use live-check can easy to do that case.

Install

npm install live-check

//or yarn 
yarn install live-check

Your code

// Check username dom exisit on document you can do this: 

import liveCheck from 'live-check'

liveCheck(()=> {
  document.querySelector(".username")
},{
  checkTimes: 10,
  checkInterval: 1*500
}).then(()=>{
  // Now you can operation the document here or implement you bussiness logic
}).catch(()=>{
  // oops the document not exist during in 10 * 1*500 millisecond over
})

Options

options type default description
checkTimes number 500 live query check condition times
checkInterval number 50(ms) live query check one time interval

Dependencies (0)

    Dev Dependencies (8)

    Package Sidebar

    Install

    npm i live-check

    Weekly Downloads

    3

    Version

    1.2.0

    License

    MIT

    Unpacked Size

    2.61 kB

    Total Files

    3

    Last publish

    Collaborators

    • ihavecoke