- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
# loose-envify
|
|
|
|
[](https://travis-ci.org/zertosh/loose-envify)
|
|
|
|
Fast (and loose) selective `process.env` replacer using [js-tokens](https://github.com/lydell/js-tokens) instead of an AST. Works just like [envify](https://github.com/hughsk/envify) but much faster.
|
|
|
|
## Gotchas
|
|
|
|
* Doesn't handle broken syntax.
|
|
* Doesn't look inside embedded expressions in template strings.
|
|
- **this won't work:**
|
|
```js
|
|
console.log(`the current env is ${process.env.NODE_ENV}`);
|
|
```
|
|
* Doesn't replace oddly-spaced or oddly-commented expressions.
|
|
- **this won't work:**
|
|
```js
|
|
console.log(process./*won't*/env./*work*/NODE_ENV);
|
|
```
|
|
|
|
## Usage/Options
|
|
|
|
loose-envify has the exact same interface as [envify](https://github.com/hughsk/envify), including the CLI.
|
|
|
|
## Benchmark
|
|
|
|
```
|
|
envify:
|
|
|
|
$ for i in {1..5}; do node bench/bench.js 'envify'; done
|
|
708ms
|
|
727ms
|
|
791ms
|
|
719ms
|
|
720ms
|
|
|
|
loose-envify:
|
|
|
|
$ for i in {1..5}; do node bench/bench.js '../'; done
|
|
51ms
|
|
52ms
|
|
52ms
|
|
52ms
|
|
52ms
|
|
```
|