Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Email component library for React.
npm i remail --save
Rough example below. Full API coming soon.
import React from 'react'
import { Document, Box, Image, Type, A, Columns, Raw } from 'remail'
export default function Template ({ foo, bar }) {
return (
<Document title='My Email Template'>
<Box width="100%" height="100%" background='whitesmoke' space={[0, 16, 0, 16]}>
<Box id='root' center width={600} space={[0, 0, 48, 0]}>
<Type fontSize={32} lineHeight={1.2}>
I'm an email!
</Type>
<Image
src=''
alt=''
href='' />
<A href=''>I'm a link</A>
<Columns>
<A href=''>Twitter</A>
<A href=''>Instagram</A>
</Columns>
<Raw output={`
<!-- This is arbitrary templating code you may need for you ESP -->
{% for item in cart.items %}
`} />
<MyLineItemComponent />
<Raw output={`
{% endfor %}
`} />
</Box>
</Box>
</Document>
)
}
remail
includes a handy CLI. Any additional flags (denoted with a preceding
--
) will be passed directly to the default
export of the specified template
file.
build
Compile and render to dest
folder:
remail build path/to/template.js path/to/dest
watch
Watch for changes in the current working directory, compile and render to dest
folder:
remail watch path/to/template.js path/to/dest
copy
Compiles and renders template to system clipboard:
remail copy path/to/template.js
MIT License © The Couch
FAQs
Email component framework built with React.
The npm package remail receives a total of 149 weekly downloads. As such, remail popularity was classified as not popular.
We found that remail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.