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

@haykal/profile-management-backend

v1.0.0

Published

> User profile management with CRUD, privacy settings, completeness tracking, and extensible metadata.

Downloads

56

Readme

@haykal/profile-management-backend

User profile management with CRUD, privacy settings, completeness tracking, and extensible metadata.

Installation

pnpm add @haykal/profile-management-backend

Configuration

forRoot() Options

import { ProfileManagementModule } from '@haykal/profile-management-backend';

@Module({
  imports: [
    ProfileManagementModule.forRoot({
      maxBioLength: 500,
      maxSocialLinks: 10,
      defaultProfileVisibility: true,
    }),
  ],
})
export class AppModule {}

| Property | Type | Default | Description | | -------------------------- | --------- | ------- | ---------------------------- | | maxBioLength | number | 500 | Maximum bio character length | | maxSocialLinks | number | 10 | Maximum social link entries | | defaultProfileVisibility | boolean | true | Default profile visibility |

Key Exports

| Export | Type | Description | | ----------------------------- | ------------- | ------------------------------------------------------------ | | ProfileManagementModule | NestJS Module | Main module with forRoot() / forRootAsync() | | PROFILE_MANAGEMENT_CONFIG | Symbol | Inject the config object | | ProfilesService | Service | Profile CRUD, privacy, completeness | | ProfilesRepository | Repository | Data access for UserProfileEntity | | UserProfileEntity | Entity | Profile entity with privacy controls | | PROFILE_MANAGEMENT_ENTITIES | Array | [UserProfileEntity] for migrations | | Gender | Enum | MALE, FEMALE, NON_BINARY, PREFER_NOT_TO_SAY, OTHER |

DTOs

| DTO | Description | | -------------------------- | ----------------------------------------------- | | CreateUserProfileDto | Create profile (userId, displayName, bio, etc.) | | UpdateUserProfileDto | Partial profile update | | UpdatePrivacySettingsDto | Privacy toggles (isPublic, showEmail, etc.) | | UserProfileResponseDto | Serialized profile response |

Domain Errors

| Error | Code | Status | Description | | ----------------------------- | ---------------------------- | ------ | -------------------------- | | ProfileNotFoundError | PROFILE_NOT_FOUND | 404 | Profile not found by ID | | ProfileNotFoundForUserError | PROFILE_NOT_FOUND_FOR_USER | 404 | No profile for user | | ProfileAlreadyExistsError | PROFILE_ALREADY_EXISTS | 409 | Duplicate profile for user |

API Endpoints

All endpoints require JWT authentication. Base path: /api/profiles.

| Method | Path | Description | | -------- | ------------------------ | ----------------------------------------------- | | POST | /profiles | Create a user profile | | GET | /profiles | List profiles (paginated, filterable, sortable) | | GET | /profiles/:id | Get profile by ID | | GET | /profiles/user/:userId | Get profile by user ID | | PATCH | /profiles/:id | Update profile | | PATCH | /profiles/:id/privacy | Update privacy settings | | DELETE | /profiles/:id | Soft-delete profile |

Usage Examples

import { ProfilesService } from '@haykal/profile-management-backend';

@Injectable()
export class MyService {
  constructor(private readonly profiles: ProfilesService) {}

  async getOrCreateProfile(userId: string) {
    try {
      return await this.profiles.findByUserId(userId);
    } catch {
      return await this.profiles.create({ userId, displayName: 'New User' });
    }
  }
}

Related Packages

  • @haykal/profile-management-client — React Query hooks for profiles
  • @haykal/user-management-backend — User entity and CRUD
  • @haykal/storage-backend — Avatar and cover photo storage

Further Reading