New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@serverless-stack/static-site-env

Package Overview
Dependencies
Maintainers
3
Versions
761
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@serverless-stack/static-site-env

A simple CLI that allows your static site to load the environment variables from your SST app.

latest
Source
npmnpm
Version
1.18.4
Version published
Maintainers
3
Created
Source

@serverless-stack/static-site-env npm

A simple CLI (@serverless-stack/static-site-env that allows your static site or Next.js app to load the environment variables from your SST app. This means that you won't have to hard code the config from your backend. Supports React.js, Next.js, and Svelte.

Installation

Run the following in the root of your static site or Next.js app.

# With npm
npm install @serverless-stack/static-site-env --save-dev
# Or with Yarn
yarn add @serverless-stack/static-site-env --dev

Usage

Once installed, tweak the start command in your package.json scripts.

Note that, you need to have sst start running for this to work.

React.js

"scripts": {
  "start": "sst-env -- react-scripts start",
},

Start your local dev environment as usual.

npm run start

Next.js

"scripts": {
  "dev": "sst-env -- next dev",
},

And run.

npm run dev

Svelte

"scripts": {
  "dev": "sst-env -- vite",
},

And run.

npm run dev

Options

--path

A relative path to the directory containing the sst.json file.

Note that, the sst-env CLI will traverse up the directories to look for the root of your SST app. If the static site or Next.js app is located outside the SST app folder, for example:

/
  backend/
    sst.json
  frontend/
    package.json

Pass in --path to specify the relative path of the SST app.

"scripts": {
  "start": "sst-env --path ../backend -- react-scripts start",
},

How it works

Here's what's going on behind the scenes.

  • The sst start command generates a file with the values specified by StaticSite, ReactStaticSite, ViteStaticSite, or NextjsSite construct's environment prop.
  • The sst-env CLI will traverse up the directories to look for the root of your SST app. If the static site or Next.js app is located outside the SST app folder, pass in --path to specify the relative path of the SST app.
  • It'll then find the file that's generated in step 1.
  • It'll load these as environment variables before running the start command.

FAQs

Package last updated on 24 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts