Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

goose-parser

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

goose-parser

PhantomJS/Browser lib which allows to parse a webpage

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
94
increased by1242.86%
Maintainers
1
Weekly downloads
 
Created
Source

goose-parser

This tool moves routine crawling process to the new simple way. Now it's possible to parse a web page for a few moments. All you need is to specify parsing rules based on css selectors. It's so simple as Goose can do it. This library allows to parse such data types as grids, collections, and simple objects. Parser supports pagination via infinite scroll and pages. It offers next features: pre-parse actions and post-parse transformations.

Installation

npm install goose-parser

Documentation

All css selectors can be set in a sizzle format.

Actions

Allow to execute actions on the page before parse process.

Click

Click by the element on the page.

Example:

{
    type: 'click',
    scope: '.open-button'
    parentScope: 'body',
    once: true
}

Fields:

  • type - type of action
  • scope - css selector of the node.
  • parentScope [optional] - css selector of the parent node, to specify a global scope (outside current).
  • once [optional] - to perform action only once (can be useful on pre-parse moment).
Wait

Wait for the element on the page.

Example:

{
    type: 'wait',
    scope: '.open-button.done'
    timeout: 2 * 60 * 1000,
    parentScope: 'body',
    once: true
}

Fields:

  • type - type of action
  • scope - css selector of the node.
  • timeout [optional] - time to cancel wait in seconds.
  • parentScope [optional] - css selector of the parent node, to specify a global scope (outside current).
  • once [optional] - to perform action only once (can be useful on pre-parse moment).

Transformations

Allow to transform parsed value to some specific form.

Date

Format date to specific view (using momentjs).

{
    type: 'date',
    locale: 'ru',
    from: 'HH:mm D MMM YYYY',
    to: 'YYYY-MM-DD'
}
Replace

Replace value using Regex.

{
    type: 'replace',
    re: ['\\s', 'g'],
    to: ''
}

Parse rules

Simple rule

The purpose of this rule - retrieving simple textual node value.

Example:

Parsing rule

{
    name: 'node',
    scope: 'div.simple-node'
}

HTML

<div class='simple-node'>simple-value</div>

Parsing result

{
    node: 'simple-value'
}

Fields:

  • name - name of the node which is presented in the result dataSet.
  • scope - css selector of the node.
  • parentScope [optional] - css selector of the parent node, to specify a global scope (outside current).
  • actions [optional] - see Actions.
  • transform [optional] - see Transformations.
Collection rule

The purpose of this rule - retrieving collection of nodes.

Example:

Parsing rule

{
    name: 'row',
    scope: 'div.collection-node',
    collection: [
        {
            name: 'node1',
            scope: 'div.simple-node1'
        },
        {
            name: 'node2',
            scope: 'div.simple-node2'
        },
        {
            name: 'nested',
            scope: 'div.nested-node',
            collection: [
                {
                    name: 'node3',
                    scope: 'div.simple-node3'
                }
            ]
        }
    ]
}

HTML

<div class='collection-node'>
    <div class='simple-node1'>simple-value1</div>
    <div class='simple-node2'>simple-value2</div>
    <div class='nested-node'>
        <div class='simple-node3'>simple-value3</div>
    </div>
</div>

Parsing result

{
    row: {
        node1: 'simple-value1',
        node2: 'simple-value2',
        nested: {
            node3: 'simple-value3'
        }
    }
}

Fields:

  • name - name of the node which is presented in the result dataSet.
  • scope - css selector of the node.
  • collection - array of any rule types.
  • parentScope [optional] - css selector of the parent node, to specify a global scope (outside current).
  • actions [optional] - see Actions.
  • transform [optional] - see Transformations.
Grid rule

The purpose of this rule - retrieving collection of collection.

Example:

Parsing rule

{
    scope: 'div.collection-node',
    collection: [[
        {
            name: 'node1',
            scope: 'div.simple-node1'
        },
        {
            name: 'node2',
            scope: 'div.simple-node2'
        }
    ]]
}

HTML

<div>
    <div class='collection-node'>
        <div class='simple-node1'>simple-value1</div>
        <div class='simple-node2'>simple-value2</div>
    </div>
    <div class='collection-node'>
        <div class='simple-node1'>simple-value3</div>
        <div class='simple-node2'>simple-value4</div>
    </div>
</div>

Parsing result

[
    {
        node1: 'simple-value1',
        node2: 'simple-value2'
    },
    {
        node1: 'simple-value3',
        node2: 'simple-value4'
    }
]

Fields:

  • scope - css selector of the node.
  • collection - array of array of any rule types.
  • parentScope [optional] - css selector of the parent node, to specify a global scope (outside current).
  • actions [optional] - see Actions.
  • transform [optional] - see Transformations.

Usage

var env = new PhantomEnvironment({
    url: uri,
    screen: {
        width: 1080,
        height: 200
    }
});

var parser = new Parser({
    environment: env,
    pagination: {
        type: 'scroll',
        interval: 500
    }
});

parser.parse({
    rules: {
        actions: [
            {
                type: 'wait',
                timeout: 2 * 60 * 1000,
                scope: '.container',
                parentScope: 'body',
                once: true
            }
        ],
        scope: 'div.scope-test',
        collection: [[
            actions: [
                {
                    type: 'click',
                    scope: '.open-button'
                },
                {
                    type: 'wait',
                    scope: '.open-button.done'
                }
            ],
            {name: 'column1', scope: 'div.scope-test-column1'},
            {
                name: 'sub-column',
                scope: 'div:last-child',
                collection: [
                    {
                        name: 'column2', 
                        scope: 'div.scope-test-column2'
                    },
                    {
                        name: 'column3', 
                        scope: 'div.scope-test-column3'
                        transform: [
                            {
                                type: 'date',
                                locale: 'ru',
                                from: 'HH:mm D MMM YYYY',
                                to: 'YYYY-MM-DD'
                            }
                        ]
                    },
                    {
                        name: 'column4', 
                        scope: 'div.scope-test-column4',
                        transform: [
                            {
                                type: 'replace',
                                re: ['\\s', 'g'],
                                to: ''
                            }
                        ]
                    }
                ]
            }
        ]]
    }
}).then(function(parsed) {
    
});

Tests

To run tests use command

npm test

Keywords

FAQs

Package last updated on 28 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc