Coder Social home page Coder Social logo

seo-checkdefets's Introduction

seo-checkdefets

Basic usage

basic setting:

var seo = require("checkdefets");
var rules = seo.rules.rules;

usage 1: input string and show result to the console

seo.checkDefets('<a rel="ooo">', '', rules);

usage 2: use stream as input and output

var inputStream = fs.createReadStream('test.html');
var outputStream = fs.createWriteStream('test.output', { encoding: 'utf8'});
seo.checkDefets(inputStream, outputStream, rules);

usage 3: check defets by selected rules

rules = seo.rules.select("1,3"));
seo.checkDefets(inputStream, outputStream, rules);

usage 4: add, change or remove rules

// replace rule 5
seo.rules.replace(5, {
    'type': 'checkHead',
    'meta': ['description', 'test', 'test2']
});

// append new rule
seo.rules.append({
    'type': 'checkElementCount',
    'tag':'h2',
    'count':10
});

// remove rule 1
seo.rules.remove(1);

// replace all rules by new config
seo.rules.replace('all', 
[
    {
        'type': 'checkelementCount',
        'tag':'h2',
        'count':1
    },
    {
        'type': 'checkHead',
        'meta': ['description', 'test1', 'test2']
    }
]);

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.