
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@templatical/import-beefree
Advanced tools
Convert BeeFree email templates to Templatical's JSON format.
Migrate from BeeFree to Templatical without rebuilding your templates by hand. Maps BeeFree modules to Templatical block types and reports any modules that need manual conversion.
npm install @templatical/import-beefree
import { convertBeeFreeTemplate } from '@templatical/import-beefree';
const beefreeJson = await fetch('/path/to/beefree-template.json').then(r => r.json());
const result = convertBeeFreeTemplate(beefreeJson);
console.log(result.content); // → Templatical TemplateContent
console.log(result.report); // → conversion report (per-module status, warnings, summary)
// Inspect modules that didn't convert cleanly
for (const entry of result.report.entries) {
if (entry.status !== 'converted') {
console.warn(
`${entry.beeFreeModuleType} → ${entry.templaticalBlockType ?? 'n/a'} ` +
`(${entry.status})${entry.note ? `: ${entry.note}` : ''}`,
);
}
}
console.log(result.report.summary);
// { total, converted, approximated, htmlFallback, skipped }
| BeeFree module | Templatical block |
|---|---|
| heading / title | TitleBlock |
| paragraph / text | ParagraphBlock |
| image | ImageBlock |
| button | ButtonBlock |
| divider | DividerBlock |
| spacer | SpacerBlock |
| social | SocialIconsBlock |
| menu | MenuBlock |
| html | HtmlBlock |
| video | VideoBlock |
| Unknown modules | Fallback to HtmlBlock |
Unknown or partially-supported modules are flagged in result.report so you can review them.
convertBeeFreeTemplate(template) — converts a BeeFree JSON template, returns { content, report }Types:
BeeFreeTemplate — input shape (see source for full structure)ImportResult — { content: TemplateContent, report: ImportReport }ImportReport — { entries: ImportReportEntry[], warnings: string[], summary: { total, converted, approximated, htmlFallback, skipped } }ImportReportEntry — { beeFreeModuleType, templaticalBlockType, status, note? }ConversionStatus — 'converted' | 'approximated' | 'html-fallback' | 'skipped'Full reference at docs.templatical.com.
MIT
FAQs
Convert BeeFree email templates to Templatical format
The npm package @templatical/import-beefree receives a total of 565 weekly downloads. As such, @templatical/import-beefree popularity was classified as not popular.
We found that @templatical/import-beefree demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.