Skip to content

Playing actual music over fp-ts notes

License

Notifications You must be signed in to change notification settings

facile-it/fortepiano

Folders and files

NameName
Last commit message
Last commit date

Latest commit

04b7337 · Feb 27, 2025
May 14, 2024
May 14, 2024
May 23, 2022
Sep 6, 2022
Feb 27, 2025
Apr 22, 2022
May 23, 2022
May 25, 2022
May 23, 2022
Apr 22, 2022
Sep 6, 2022
Feb 27, 2025
Apr 29, 2022
Apr 28, 2022
Nov 12, 2024
May 14, 2024
Apr 22, 2022
Nov 8, 2024
Feb 27, 2025
Apr 22, 2022
Nov 10, 2024
Nov 10, 2024
Nov 10, 2024
Feb 26, 2025

Repository files navigation

fortepiano [ˌfɔrteˈpjaːno]

Playing actual music over fp-ts notes 🎶

GitHub Workflow Status Codecov GitHub npm

Description

Fortepiano is a mocking library for TypeScript. It promotes immutability, composability and purity, making it ideal for projects that embrace functional programming principles.

Getting Started

Installation

To install the stable version:

npm install fortepiano

or using yarn:

yarn add fortepiano

Usage

Fortepiano uses a functional API to create and configure mocks, encouraging pure function usage and immutable mock objects.

Here's an example:

import { $mock } from 'fortepiano'

interface User {
  firstName: string
  lastName: string
}

export const UserMock = (): $mock.Mock<User> =>
  $mock.struct({
    firstName: $mock.string,
    lastName: $mock.string,
  })

console.log(UserMock()()()) // Output: { firstName: 'randomString', lastName: 'randomString' }

Contributing

See the CONTRIBUTING.md file for details.

Authors

License

This project is licensed under the MIT License. See the LICENSE.md file for details.