### Install @eoussama/core with npm Source: https://github.com/eoussama/core/blob/main/README.md Use this command to add the core package to your project when using npm. ```bash npm install @eoussama/core ``` -------------------------------- ### Install @eoussama/core with yarn Source: https://github.com/eoussama/core/blob/main/README.md Use this command to add the core package to your project when using yarn. ```bash yarn add @eoussama/core ``` -------------------------------- ### Install @eoussama/core with pnpm Source: https://github.com/eoussama/core/blob/main/README.md Use this command to add the core package to your project when using pnpm. ```bash pnpm add @eoussama/core ``` -------------------------------- ### Import utilities in JavaScript/TypeScript Source: https://github.com/eoussama/core/blob/main/README.md Demonstrates how to import utilities using both ESM and CommonJS module systems. ```javascript // ESM import { someUtility1 } from "@eoussama/core"; // CommonJS const { someUtility2 } = require("@eoussama/core"); ``` -------------------------------- ### Create New Feature Branch Source: https://github.com/eoussama/core/blob/main/CONTRIBUTING.md Use this command to create a new branch for your feature contribution. Replace 'your-feature-name' with a descriptive name for your changes. ```bash git checkout -b feat/your-feature-name ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.