npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

email-scribe

v1.0.1

Published

Email Scribe is a feature-rich, embeddable email editor (<320kb gzipped), designed for creating modular, email-safe designs. This semi-WYSIWYG editor allows you to build emails using pre-existing template modules, ensuring compatibility across various ema

Downloads

164

Readme

Email Scribe

A feature-rich, embeddable email editor (<250kb gzipped), designed for creating modular, email-safe designs. This semi-WYSIWYG editor allows you to build emails using pre-existing template modules, ensuring compatibility across various email clients. Email Editor

Key Features

  • Import Email Templates: Parse and import email templates (especially StampReady templates) as modular, editable components.
  • Embeddable SPA: Completely isolated CSS to prevent conflicts with parent application styles that builds to a single js+css.

  • Export and Import: Save your work as JSON, import previously saved designs, and save/load from server.

  • Download Safe HTML: Generate and download sanitized, email-safe HTML.

  • Responsive Preview: View your design across multiple device sizes (mobile, tablet, PC).

  • Theme Support: Light/Dark mode that can sync with the parent application (defaults to 'theme-dark' class on body).

  • Mock Express Server: Includes a mock server for image upload (with resizing), template serving, and preset management.

  • Bulk Settings: Change overlapping/merged settings for multiple blocks simultaneously.

  • Server-Side Rendering Support: Enables dynamic content injection via server-side processing.

    • Converts editable fields to placeholders (e.g., %field_name%)
    • Wraps blocks in uniquely identified templates
    • Facilitates iterative data population on the server

Using as a React Component

Info: This is the client-side aspect of the editor. At the very least, you'll need to implement a server that serves templates and handles image uploads (A fully functional example server is included in git repo of the project, check next section for more details).

import { EmailScribe } from 'email-scribe';
function App() {
  return (
    <div style={{ width: '100vw', height: '100vh' }}>
      <EmailScribe
        apiUrl='http://localhost:3002'
        basePath='email-scribe'
        templatesToFetch={['Boxed-01', 'Promotion-01', 'All-in-one']}
        iconComponent={<img src='./assets/someLogo.png' />}
        title='Embedded Email Scribe'
      />
    </div>
  );
}

Props

| Prop | Description | Optional | | ---------------- | --------------------------------------------------- | -------- | | apiUrl | API calls start with this url | No | | basePath | API calls become: apiUrl/basePath/route | No | | templatesToFetch | Array of template names to fetch (purchased by you) | No | | iconComponent | Custom icon component. Can be React Node. | Yes | | title | Title for the editor | Yes |

API and Server Requirements

The application comes with an Express server that handles image uploads, template serving, and preset management. For production use, you'll need to implement similar endpoints:

  • /upload: POST endpoint for image uploads (with optional resizing)
  • /templates: GET endpoint to serve email templates
  • /preset: GET, POST, DELETE endpoints for managing presets (can be ignored if not needed)
  • /presets: GET endpoint to list all presets (same as above)

Refer to the server directory and server.ts for detailed implementation. Note the .env.example file for defaults.

Using as a Standalone Application/Static build

Setup

Note: All bun commands can be replaced with your preferred package manager/runtime environment

  • Clone the repo
  • Run bun i in root as well as in server directory.
  • Extract your templates in server/Templates folder.
    • The folder structure should be like server/Templates/xyzTemplate/ and index.html should be inside it alongside any resources embedded into templates placed relatively.
    • Suggested/Tested template: Matah Responsive Email Set.
  • Copy .env.example to .env and adjust as needed.

Development

  • First cd into server and run bun run serve to start the server (for image uploads, template serving, and preset management)
  • Then in a new terminal in root directory, run bun run dev

Production

  • bun run build:static followed by bun run serve in server directory (or use your preferred compatible server implementation).
  • To embed this SPA in your project, include the compiled JS and CSS files in your projects.

Project Structure

The project is a React SPA (Single Page Application) that uses Tanstack Query for data fetching, Zustand for state management, Radix components for UI, Handlebars for templating alognside other minor packages for various tasks. Project Structure

License

This project is licensed under the MIT License - see the LICENSE file for details.