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

@alitajs/umi-plugin-deploy-config

v0.1.2

Published

umi deploy plugin

Downloads

9

Readme

NPM version

插件作用提取项目部署的配置到输出目录的根目录

场景: 在实际开发中,项目会有不同的环境,如此能够做到一次编译,在各个环境下都可以运行呢?

注意:本插件主要针对UMI项目CDN流程

  • umi 中请勿设置publicPathruntimePublicPath
  • 如要结合CI流程 请配和update-deploy-config使用

安装

// npm
npm install --dev @alitajs/umi-plugin-deploy-config

// yarn 
yarn add --dev @alitajs/umi-plugin-deploy-config

使用

// .umirc.ts || config/config.ts
import { IConfig } from 'umi-types';

const config: IConfig = {
  plugins: [
    ['@alitajs/umi-plugin-deploy-config', {
      baseURL: 'https://api.***.com'
    }]
  ]
};

export default config;

Options

baseURL

  • 类型: string
  • 描述: API地址
  • 默认值: 无

exportConfig

  • 类型: boolean
  • 描述: 是否导出config.js
  • 默认值: true

输出结果

  • 输出配置文件如下
// config.js
(function() {
  // API地址
  window.baseURL = 'https://api.***.com';
  // 共有路径
  window.publicPath = "https://cdn.***.com/${project-name}/${env}/";
})();
  • 输出Html文件如下
// 核心代码
<!DOCTYPE html>
<html lang="en">
  <head>
    <script src="/{base}/config.js?t=1565598003"></script>
    <script>
      var bundleStyle = document.createElement('link');
      bundleStyle.rel = 'stylesheet';
      bundleStyle.href = window.publicPath + 'umi.daee5917.css';
      document.head.appendChild(bundleStyle);
    </script>
  </head>
  <body>
    <noscript>Sorry, we need js to run correctly!</noscript>
    <div id="root"></div>
    <script>
      var bundleScript = document.createElement('script');
      bundleScript.type = 'text/javascript';
      bundleScript.src = window.publicPath + 'umi.3abab410.js';
      document.body.appendChild(bundleScript);
    </script>
  </body>
</html>