after-load

1.0.4 • Public • Published

After-load :

Fast, flexible & lean implementation of Getting Content of remote webpage after loading, such as browser, designed for Node.js .

Install :

npm install after-load --save;
 

OS Compatibility :

Compatible with :

  • MacOS (OSX) .
  • Linux (64bits).

Requirements :

  • For MacOS : No requirements.
  • For Linux : (Redhat,Ubuntu,...) : It relies on Fontconfig (the package fontconfig or libfontconfig, depending on the distribution). The system must have GLIBCXX_3.4.9 and GLIBC_2.7.

How to use :

Assume that :

 var afterLoad=require('after-load');

1. Sync :

  var html=afterLoad('https://google.com');
console.log(html);

2. Async :

 afterLoad('https://google.com',function(html){
     console.log(html);
 })

Parse HTML :

1. Async :

   afterLoad('http://stackoverflow.com/users/747579',function(html,$){
     console.log(`Abdennour's Reputation in Stackoverflow = ${$('.rep').eq(0).text()} `);
      //   7.6k
  })

2. Sync :

  var html=afterLoad('http://stackoverflow.com/questions/38537723');
  var $=afterLoad.$(html);
  console.log($('title').text());
  //javascript - Suitable Delimitor for one space or more using Node-ETL - Stack Overflow
 

License :

  Copyright (c) 2016 Abdennour TOUMI <http://abdennoor.com>

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.

Package Sidebar

Install

npm i after-load

Weekly Downloads

31

Version

1.0.4

License

MIT

Last publish

Collaborators

  • abdennour