## Quick start
* ES2022-compatible web browser (Chrome, Edge, Firefox, etc)
``shell`
npm install --save @atono-io/web-sdk
`javascript
import { Atono } from '@atono-io/web-sdk';
const atono = Atono.fromEnvironmentKey('
async function main() {
const featureFlags = await atono.getFeatureFlags();
const amazingFeatureEnabled = featureFlags.getBooleanValue('amazing_feature_enabled', false);
if (amazingFeatureEnabled) {
console.log('Amazing feature is enabled 😎');
}
}
main();
``