
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
CMS module inspired by atomic design
const express = require('express');
let app = express();
const atomicms = require('atomicms');
let cms = new atomicms();
app.get('/', cms.requestHandler);
Atomicms takes an opts
object specifing the paths of key.json
, templates, organisms and content.
Default opts
object:
{
key: 'key.json',
content: 'content',
template: 'templates',
organism: 'organisms'
}
key.json
is where it comes all together. One template
and content
are assigned to one url respectively.
Example:
{
'/index': {
'template': 'index.html',
'content': 'index.json'
}
}
Organisms can reside in templates and are referenced using markup-js
syntax.
Example:
template [index.html]
<body>
{{oHeader as header}}
</body>
organism [oHeader.html]
<h1>{{title}}</h1>
<img src={{img}}>
<p><strong>{{content}}</strong></p>
content [index.json]
{
'header': {
'title': ...,
'img': ...,
'content': ...
}
}
npm install atomicms
FAQs
A CMS based on atomic design principles.
We found that atomicms 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.