
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Is a simple view library for creating components with Template Literals. Components are converted to Hyper Script which creates the virtual dom. The virtual dom has a diffing mechanism similar to ReactJS. This library is still in Alpha.
<!DOCTYPE html>
<html>
<head>
<title>Literal JS Test</title>
<script src="https://unpkg.com/literaljs"></script>
<script src="index.js"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>
Literal.Component(
`<p class="corn">
<div>
This is a div!
</div>
</p>`
);
Components just accept Template Literals and generate Hyper Script.
You can combine components with ${ }
, like this:
var firstComponent = Literal.Component(
`<div>
This should render like React.
<p>Isn't this lovely?</p>
${otherComponent}
</div>`
);
var secondComponent = Literal.Component(
`<div>
Oh yeah!
</div>`
);
Literal.Render(MainComponent, 'app');
The Render method takes the last component and id of an html node in your entry file.
FAQs
A small JavaScript library for building reactive user interfaces.
The npm package literaljs receives a total of 13 weekly downloads. As such, literaljs popularity was classified as not popular.
We found that literaljs 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.