⚠️ This package is experimental and under active development. APIs may change without notice. Breaking changes may occur in minor versions.
A minimalist feature flagging package for small and proof-of-concept projects.
- Easy to use feature flags with boolean values
- Lightweight and minimal dependency
npm install featier
import { Featier } from 'featier';
const featier = new Featier({ darkMode: true });
if (featier.isOn('darkMode')) {
console.log('Dark mode is enabled');
}
This project is licensed under the ISC License. See the LICENSE file for details.