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

bolt-express

v0.0.8

Published

- Lightning Fast Hot Reloading on changes - Setup with TypeScript Definitions for Express in Frontend, Backend, and Manifest - Optimized Build Size - Easy Smart Bundling in Frontend UI and Backend Code contexts - Spin a up a new project in Svete, React, o

Downloads

618

Readme

A lightning-fast boilerplate for building Express Addons in Svelte, React, or Vue built on Vite + TypeScript + Sass

npm License Chat

Features

  • Lightning Fast Hot Reloading on changes
  • Setup with TypeScript Definitions for Express in Frontend, Backend, and Manifest
  • Optimized Build Size
  • Easy Smart Bundling in Frontend UI and Backend Code contexts
  • Spin a up a new project in Svete, React, or Vue
  • Easily configure in express.config.ts
  • Easy Package to Zip archive with sidecar assets
  • GitHub Actions ready-to-go for Zip Releases

Backers

Huge thanks to our backers who have made this project possible!

Founding Backers

Founding backers have made substantial contribution to the project at the start which has made this project possible.

...

If you're interested in supporting this open-source project, please contact the Hyper Brew team.

Support

Free Support

If you have questions with getting started using Bolt Express, feel free to ask and discuss in our free Discord community Discord Community.

Paid Support

If your team is interested in paid consulting or development with Bolt Express, please contact the Hyper Brew team. More info on our Custom Addon Development & Consulting Services

Can I use Bolt Express in my free or commercial project?

Yes! Bolt Express is 100% free and open source, being released under the MIT license with no attribution required. This means you are free to use it in your free or commercial projects.

We would greatly appreciate it if you could provide a link back to this tool's info page in your product's site or about page:

Bolt Express Info Page Link: https://hyperbrew.co/resources/bolt-express

Built with Bolt Express button graphics:

PNG Files

SVG Files

Prerequisites

  • Node.js 18 or later
  • Package manager either
    • NPM (comes with Node.js)
    • Yarn ( ensure by running yarn set version classic )
    • PNPM ( ensure by running pnpm --version )
  • Express Desktop App

Quick Start

Create your new Bolt Express project (follow CLI prompts)

  • yarn - yarn create bolt-express
  • npm - npx create-bolt-express
  • pnpm - pnpm create-bolt-express

Change directory to the new project

  • cd project

Install Dependencies (if not already done by create command)

  • yarn - yarn
  • npm - npm i
  • pnpm - pnpm i

Build the addon (must run before dev, can also run after for panel to work statically without the process)

  • yarn yarn build
  • npm npm run build
  • pnpm pnpm build

Run the addon in hot reload mode for development

Note: Ensure "Hot reload addon" is checked in Express Addon Development menu

  • yarn yarn dev
  • npm npm run dev
  • pnpm pnpm dev

Bundles your addon and specified assets from copyZipAssets to a zip archive in the ./zip folder

  • yarn yarn zip
  • npm npm run zip
  • pnpm pnpm zip

Write frontend UI code in src/main.svelte / src/main.tsx / src/main.vue

Write backend express code in src-code/code.ts

Add Addon to Express

  1. Open Express
  2. Open Document
  3. Select Add-ons from left sidebar
  4. Select "Your add-ons"
  5. Toggle "Add-on testing"
  6. With correct serve port number, check "I Understand..." and press "Connect"

Load and Debug Addon

  1. Launch your addon by clicking on the icon of your Addon in the "In Development" section of "Your Add-ons"
  2. Open the Dev Tools by right click > Inspect

Sending Messages between the Frontend and Backend

Bolt Express makes messaging between the frontend UI and backend code layers simple and type-safe.

Simply write your functions in code.ts on the backend, and import the sandbox variable to call the sandbox functions from the frontend with full type-safety:

1. Write Function in Backend src-code/code.ts

const sandboxApi = {
  myFunction: (a: string, b: number) => {
    // do stuff
    return true;
  },
};

2. Call that Function from the Frontend

Frontend: src/main.svelte / src/main.tsx / src/main.vue

import { sandbox } from "./utils/utils";

const helloWorld = async () => {
  let result = await sandbox.myFunction("hello", 400);
  console.log(result);
};

Info on Build Process

Frontend code is built to the .tmp directory temporarily and then copied to the dist folder for final. This is done to run the build process outside of the @adobe/ccweb-add-on-scripts process to improve speed in development.

The backend code is bundled into a single code.js file.

The manifest.json is generated from the express.config.ts file with type-safety. This is configured when running yarn create bolt-express, but you can make additional modifications to the express.config.ts file after initialization.