vite-plugin-env-transformer
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

logo of vite-plugin-env-transformer repository

vite-plugin-env-transformer

This is a vite plugin. It parses the configuration from your .env file into an object and allows you to import it as an ES module in your code.

English | 简体中文

Installation

pnpm i -D vite-plugin-env-transformer

Usage

Create an envs folder in the root directory, add some .env.[mode] files like this:

# envs/.env.dev
VITE_BASE_URL='https://github.com/AqingCyan/vite-plugin-env-transform-module'

SYSTEM_NAME='demo project'
SYSTEM_CONFIG_ONE='config one'
SYSTEM_CONFIG_TWO='config two'
SYSTEM_CONFIT_THREE_TEXT='demo text'

Your .env.[mode] file's mode is dev.

Your env variable will be read in a tree structure.

const system = {
  name: 'demo project',
  config: {
    one: 'config one',
    two: 'config two',
    three: {
      text: 'demo text'
    }
  }
}
// vite.config.ts
import { ConfigEnv, defineConfig } from 'vite'
import { envTransformModule } from 'vite-plugin-env-transformer'

const options = { mode, resolveId: 'demo:siteData', envConstantPrefix: 'SYSTEM' }

export default ({ mode }: ConfigEnv) => {
  plugins: [envTransformModule(options)]
}

Now when your project compiles, you get a module called demo:siteData that contains the configuration you wrote in the .env.dev file.

This module is virtual, so we also need to write type.

///<reference types="vite/client" />
interface SiteData {
  readonly system: {
    name: string
    config: {
      one: string
      two: string
      three: {
        text: string
      }
    }
  }
}

declare module 'demo:siteData' {
  const siteData: SiteData
  export default siteData
}

Now you can use it in your project!

// App.tsx
import siteData from 'demo:siteData'

console.log(siteData)

// TODO see example

Options

// TODO

TODO

// TODO

Package Sidebar

Install

npm i vite-plugin-env-transformer

Weekly Downloads

15

Version

0.0.2

License

MIT

Unpacked Size

12.7 kB

Total Files

6

Last publish

Collaborators

  • cyanthing