
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
This is a small project that helps you to perform seo checks, it is a light weight, flexible and extendible npm package can help you check from file / string / readable stream and export the result to stdout / file / writable stream.
npm testIf you got
const spawn = require('child_process').spawn;
^^^^^
SyntaxError: Use of const in strict mode.
Please run:
nvm install stable
With provided example file:
<html>
<head>
<title>This is a test HTML page</title>
<meta name="descriptions" value="desc" />
<meta name="keywords" value="good,html" />
</head>
<body>
<h1>Test HTML</h1>
<strong>Test HTML</strong>
<a href="." rel="random link">A link</a>
<img src="."/>
</body>
</html>
And use this in your code:
Recommended:
const checks = require('seo_checks');
checks.start().fromFile(__dirname + '/test.html').then(function(seoCheck) {
return seoCheck.checkImg().checkLink().checkHead().checkStrong().checkH1().toFile(outputFile);
})
Or you can choose in this way:
const checks = require('seo_checks');
checks.checkHtmlFile(__dirname + '/test.html', ['checkImg']).then(function(exports) {
exports.toFile('test.txt');
});
And you will have a file test.txt:
There are 1 <img> tag without alt attribute
<img /> tag without alt attribute.<a /> tag without rel attribute.<title> tag.<meta name=“descriptions” ... /> tag.<meta name=“keywords” ... /> tag.<strong> tag in HTML(default is 15).<h1> tag. https://github.com/cuuboy/seo_checks/blob/master/lib/predefined_rules.js and use existing query functions or add / improve more query function at https://github.com/cuuboy/seo_checks/blob/master/lib/tag_queries.jsFor example:
There are 1 <img> tag without alt attribute
There are 1 <a> tag without rel attribute
<title> is missing
<meta> with name="descriptions" is missing
<meta> with name="keywords" is missing
This document has more than 15 <strong> tag
This document has more than 1 <h1> tag
FAQs
A little helper for checking SEO
The npm package seo_checks receives a total of 11 weekly downloads. As such, seo_checks popularity was classified as not popular.
We found that seo_checks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.