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

@hitachivantara/app-shell-vite-plugin

v1.4.6

Published

AppShell Vite Plugin

Downloads

1,666

Readme

@hitachivantara/app-shell-vite-plugin

Hitachi Vantara App Shell Vite Plugin: Streamlines development and build processes for App Shell.

Overview

The @hitachivantara/app-shell-vite-plugin enhances the App Shell experience by automating essential development and build tasks, such as processing configurations, creating virtual endpoints, and managing importmaps and base paths.

This plugin is responsible for the hard lifting during development time and build time. It performs the following actions:

  • copy all the required js bundles to the final "bundles" folders;
  • process the app-shell.config.ts file;
  • create virtual endpoints to support dev mode;
  • create virtual main.tsx and App.tsx files. These files are there strictly for development purposes, as what ultimately matters are the ESM modules exported and consumed by others;
  • create importmap and inject it into index.html;
  • create <base href="..."> tag and inject it into index.html.

How to use

Install the plugin:

npm install -D @hitachivantara/app-shell-vite-plugin

Add the plugin to the vite plugin list in vite.config.ts.

// imports omitted
import { HvAppShellVitePlugin } from "@hitachivantara/app-shell-vite-plugin";

export default defineConfig(({ mode }) => {
  return {
    plugins: [
      // other plugins omitted
      HvAppShellVitePlugin({ mode })
    ],
  };
});

app-shell.config

The configuration file must be placed at the root directory of the app and the vite-plugin can process the app-shell.config as a JSON or Typescript extension.

Managing settings in TypeScript however provides more efficiency and type safety features. You can check this configuration in action here.

Configuration properties

  • modules: all modules that an application wants, and needs, to export so that they can be consumed by either App Shell or any other applications.
  • type: controls the way application build process is executed. By using the app option, the build process will generate the complete set of final files ( index.html, assets, etc). Using the bundle option, will only create the final files for the entries defined at the modules property. app value is typically recommended for the scenarios where App Shell is used at standalone scenarios, and bundle for microservices environments. By default, type value is set to app at local development, but it will change to bundle value at CI environments (relying at the standard env property that normally available at these environments). To use app , value needs to be explicitly set at vite.config file.

Automatic features

  • autoViewsAndRoutes: automatically exports views from the src/pages directory (or any other specified folder defined in the viewsFolder property). This includes automatic route configuration (merges with existing ones, if any). The resulting views will be added automatically to views defined at the configuration file (associated bundle will also be added to the final modules list)
  • autoMenu: creates a navigation menu derived from the views. This ensures a more organized and streamlined development process.

Empty Configuration Validity: With these automatic features in place, the configuration file isn't even mandatory for dev environments.

<base href="..."> tag

The tag is automatically injected at index.html file during the build process and its value will be the same as the value in the baseUrl property of the App Shell configuration file.