featier
v1.0.5
Published
A minimalist feature flagging package for small and proof-of-concept projects.
Readme
Featier
A minimalist feature flagging package for small and proof-of-concept projects.
Features
- Easy to use feature flags with boolean values
- Lightweight and minimal dependency
Installation
npm install featierUsage
import { Featier } from 'featier';
const featier = new Featier({ darkMode: true });
if (featier.isOn('darkMode')) {
console.log('Dark mode is enabled');
}License
This project is licensed under the ISC License. See the LICENSE file for details.
