๐๏ธ Base repository for building JavaScript apps or libraries.
To use this template, clone this repository and rename all "Foundation" instances to the name of your library. Set this package to "public" before publishing it.
nvm install
cp .env.template .env.local
npm install
- List the main features of the library
- Explain how it distinguishes from other libraries
Everything is exported from the main entry-point through an ES6 module:
import { add } from "foundation";
Install with the Node Package Manager:
npm install foundation
Documentation is generated here.
npm run dev
npm run dev:test
(or use dedicated Vitest plugin of your IDE)
Import exported library items from the "#lib"
alias:
import { add } from "#lib";
npm run build:lib
- Set the
private
property tofalse
in package.json npm run release:init
npm run release:alpha
npm run release:beta
npm run release:patch
npm run release:minor
npm run release:major
npm run dev
npm run dev:test
(or use dedicated Vitest plugin of your IDE)
npm run build:app
- OPTIONAL:
export ENV_PATH=path/to/extra/dot_env/file
npm start
List all environment variables used by the application:
ENV_PATH
: Path to an optional environment file.LOG_LEVEL
: One of the supported levels or"silent"
to disable logging.