Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
functional-docs
Advanced tools
Generate HTML files? Use them for documentation? Great, then this tool might be for you.
Here are a set of tests to validate your HTML output. These tests check if your image references are legitimate, if they have alt tags, if your internal links are working, and so on. It's intended to be an all-in-one checker for your documentation output.
Simple: install from npm:
npm install functional-docs
Then call a single function, runTests()
:
var funcDoc = require('functional-docs');
funcDoc.runTests([ './files'], {stopOnFail: false, ext: ".html"}, function(err) {
});
runTests()
takes three parameters:
stopOnFail
indicates if you want the testing to stop once a failure is found; defaults to false
ext
indicates the extension of the files you want to test; defaults to ".html"mapPrefix
: if images start with a /
, the test assumes it's at ./
. This is mostly for routing compatability with express.remap
: an object that contains two properties, links
and `images, which define rerouting rules. This is mostly for routing compatability with express. For example:remap: {
links: {
"/path": __dirname + "/out/path",
"/path1/path2": __dirname + "/out/path1/path2",
},
images: {}
}
In this context, your source files would have an href to "/path" and "/path1/path2". Express will add routes to these paths (because you defined them). Meanwhile, the tester will actually look for the files in dirname + "/out/path". The tester will not change the content of your HTML files; it'll only resolve links it finds as "/path" as if they referred to dirname + "/out/path".
safeWords
is an array of strings you want the spellchecker to ignoreskipSpelling
skips the spelling check entirely#linkToMe
)If you think about it, some tests can actually be run before you compile into HTML. For example, if I was writing documentation in Markdown (which I do), I could just check to see if ![]
was erronously references. I've grouped this distinction in folders marked pre and post.
Then I started thinking that users might write their docs in reStructuredText, AsciiDoc, Pandoc, or some other format, so I decided to just focus right now on the rendered HTML output, and concentrate on catching markup languages if the time ever allows.
FAQs
A documentation test suite for HTML files
We found that functional-docs 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.