Skip to content

amrsaeedhosny/featier

Repository files navigation

Featier

Build Status

⚠️ 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.

Features

  • Easy to use feature flags with boolean values
  • Lightweight and minimal dependency

Installation

npm install featier

Usage

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.

About

A minimalist feature flagging package for small and proof-of-concept projects.

Topics

Resources

License

Stars

Watchers

Forks