npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@abenzine/crack-the-code

v1.0.7

Published

A lightweight, standalone Angular mini-game component.

Readme

🎮 Crack The Code

A lightweight, standalone Angular mini-game component.

@abenzine/crack-the-code is a reusable Angular library that provides a simple "Crack the Code" number guessing game built with Angular Signals and Angular Material.

It is:

✅ Standalone component (no NgModule required)

✅ Built with Angular Signals

✅ OnPush change detection

✅ i18n-agnostic

✅ Fully configurable via reactive translations

📦 Installation

npm install @abenzine/crack-the-code

⚙️ Peer Dependencies

Make sure your project has:

@angular/core

@angular/common

@angular/material

Compatible with Angular 21+.

🚀 Usage

  1. Import the standalone component

import { CrackTheCodeComponent } from '@abenzine/crack-the-code';

@Component({ standalone: true, imports: [CrackTheCodeComponent], template: <crack-the-code [translations]="translations" /> }) export class MyComponent {}

  1. Internationalization (i18n)

This library is translation-system agnostic.

It does not depend on ngx-translate, Transloco, or any other i18n library.

Instead, it expects translations to be passed reactively from the parent via an Angular Signal.

🔤 Translations Interface

export interface CrackTheCodeTranslations { title?: string; startGame?: string; restartGame?: string; secretCodeLabel?: string; attemptsLabel?: string; inputPlaceholder?: string; guessAlreadyTried?: string; submitGuess?: string; attemptsHistoryLabel?: string; correctPlaceLabel?: string; wrongPlaceLabel?: string; gameWonMessage?: string; }

All properties are optional — defaults are provided internally.

🧠 Recommended Reactive Setup (Angular Signals)

Example using a translation system like ngx-translate:

import { Component, signal } from '@angular/core'; import { TranslateService } from '@ngx-translate/core'; import { CrackTheCodeComponent, CrackTheCodeTranslations } from '@abenzine/crack-the-code';

@Component({ standalone: true, imports: [CrackTheCodeComponent], template: <crack-the-code [translations]="translations" /> }) export class HomeComponent {

translations = signal( this.buildTranslations() );

constructor(private translate: TranslateService) { this.translate.onLangChange.subscribe(() => { this.translations.set(this.buildTranslations()); }); }

private buildTranslations(): CrackTheCodeTranslations { return { title: this.translate.instant('CRACK.TITLE'), startGame: this.translate.instant('CRACK.START'), restartGame: this.translate.instant('CRACK.RESTART'), secretCodeLabel: this.translate.instant('CRACK.SECRET'), attemptsLabel: this.translate.instant('CRACK.ATTEMPTS'), inputPlaceholder: this.translate.instant('CRACK.INPUT'), guessAlreadyTried: this.translate.instant('CRACK.ALREADY_TRIED'), submitGuess: this.translate.instant('CRACK.SUBMIT'), attemptsHistoryLabel: this.translate.instant('CRACK.HISTORY'), correctPlaceLabel: this.translate.instant('CRACK.CORRECT'), wrongPlaceLabel: this.translate.instant('CRACK.WRONG'), gameWonMessage: this.translate.instant('CRACK.WON') }; } }

Whenever the language changes, the signal updates automatically and the component re-renders.

🎨 Angular Material

This component uses:

MatButtonModule

MatInputModule

MatFormField

MatDivider

MatHint

Make sure Angular Material is installed and configured in your application.

🕹 Game Features

4-digit random secret code

Timer

Attempt history

Feedback:

Correct digit in correct place

Correct digit in wrong place

Prevents duplicate guesses

Restart support

Reactive UI via Angular Signals

🧩 Customization

You can partially override translations:

translations = signal({ title: 'My Custom Title' });

All missing values fallback to internal defaults.

🏗 Technical Details

Standalone component

ChangeDetectionStrategy.OnPush

Signal-based state management

Internal service encapsulates game logic

No global providers

No i18n coupling

Fully tree-shakable (sideEffects: false)

📄 Example Template

<crack-the-code [translations]="translations" />

👤 Author

Walid BENZINE npm: @abenzine

📜 License

MIT