
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
mirrorview
Advanced tools
Template engine that works like PHP, to display data in HTML use <?js writeToDocument = 'Example' ?>
MirrorView is a Node.js module that allows you to execute JavaScript code embedded within an HTML string and replace the code with the output.
To install MirrorView, use npm:
npm install mirrorview
To use MirrorView in your Node.js program, require the module and call the executeJS function:
const mirrorview = require('mirrorview');
let html = '<html><body><h1><?js "Hello, world!" ?></h1></body></html>';
let context = {};
html = mirrorview.executeJS(context, html);
The executeJS function takes two arguments: a context object and an HTML string. The context object can be used to provide variables or functions that the embedded JavaScript code can use. To output values in the HTML string you can use the echo function, it takes a string as a parameter.
For example, the following HTML string will output "2":
<html>
<body>
<h1><?js echo(1 + 1); ?></h1>
</body>
</html>
Here is another example of how you could use the executeJS function in a Node.js program:
const mirrorview = require('mirrorview');
let html = `
<html>
<body>
<h1><?js "Hello, world!" ?></h1>
<p><?js echo("Today is " + new Date().toLocaleDateString()); ?></p>
<ul>
<?js
for (let i = 1; i <= 5; i++) {
echo('<li>Item ' + i + '</li>');
}
?>
</ul>
</body>
</html>
`;
let context = {};
html = mirrorview.executeJS(context, html);
console.log(html);
This code will output the following HTML string:
<html>
<body>
<h1>Hello, world!</h1>
<p>Today is [current date]</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
</body>
</html>
There are a few limitations to be aware of when using MirrorView:
MirrorView is released under the GNU AGPL v3.0 license. See LICENSE for more information.
FAQs
Template engine that works like PHP, to display data in HTML use <?js writeToDocument = 'Example' ?>
We found that mirrorview 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.