netlify-plugin-inline-functions-env-typescript
Why
When we talk about environment variable values for a netlify function, it is important to understand that there're two possible contexts. Build time This is when netlify builds your site. The following environment variables would be available at build time:- Environment Variables you set at Netlify UI
- Readonly Environment Variables set by Netlify including build/git metadata
- Deploy Context Environment Variables you set in
netlify.toml
within[context.xxx.environment]
section
- Environment Variables set by other Netlify build plugins such as contextual env plugin
- Environment Variables you set at Netlify UI
statusCode: 200,
body: JSON.stringify({
CONTEXT: process.env.CONTEXT
})
};
};
module.exports = { handler };
```
The plugin will produce the inlined function source file
```
function handler(event, context) {
return {
statusCode: 200,
body: JSON.stringify({
CONTEXT: "deploy-preview" <---------- replaced with build time only env var values
})
};
};
module.exports = { handler };
```
Caveats
The plugin wouldn't replace more dynamic code like the following ones
```
console.log(process.env); <-------- no concrete values, won't be replaced with an object
const { CONTEXT } = process.env; <-------- destructuring won't work! Please use process.env.CONTEXT instead (this also makes it more explicit and easier to search globally for process.env dependencies)
function getKey(key) {
return process.envkey; <-------- rely on runtime value so won't be replaced
}
```
So you may have to intentionlly convert the above code into something like process.env.X
so it will be inlined.
Install
add the following lines to yournetlify.toml
file:
```toml
plugins
package = "netlify-plugin-inline-functions-env-typescript"
```
To complete file-based installation, from your project's base directory, use npm, yarn, or any other Node.js package manager to add the plugin to devDependencies
in package.json
.
```bash
npm install -D netlify-plugin-inline-functions-env-typescript
```
More Options
Debugging
You can turn on verbose for debugging purpose by providing plugin inputs. ```toml plugins package = "netlify-plugin-inline-functions-env-typescript" plugins.inputs verbose = "true" inlineAll = "true" ```It might be recommended in the case your entry function imports other files that useinlineAll
will try to find all the.ts
or.js
files in your FUNCTIONSSRC directory
process.env
in them. As it seems the original plugin did not replace alongside the dependency tree.
Be careful with verbose mode, as it will print the files with the replaced env variables
Conditional Transformation
If you are using libraries such as dotenv-defaults, you may want to limit or skip the transformation for certain environment variables. ```toml plugins package = "netlify-plugin-inline-functions-env-typescript" plugins.inputs exclude = "DONOTTRANSFORMME", "DONOTTRANSFORMME2" ``` ```toml plugins package = "netlify-plugin-inline-functions-env-typescript" plugins.inputs include = "ONLYTRANSFORMME", "ONLYTRANSFORMME2" ```Gotchas
- The
[[plugins]]
line is required for each plugin, even if you have other plugins in yournetlify.toml
file already.
- This plugin only replaces variables in the functions directory. Files outside the directory won't be modified.
- If you want to lock to a specific version(or a version that hasn't been accepted by netlify build system yet), please add
netlify-plugin-inline-functions-env-typescript
to your dev dependencies byyarn install --dev netlify-plugin-inline-functions-env-typescript
ornpm install --save-dev netlify-plugin-inline-functions-env-typescript
.