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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dreamit/funpara

v1.0.0

Published

Function parameter library for coding and testing

Downloads

394

Readme

funpara

Function parameter library to ease development and testing. The library provides Date and Fetch related functions that can be used without complicated spy/mock setups so that an application can easily be tested with function parameters.

Installation

npm install --save @dreamit/funpara

TypeScript declarations are provided within the project.

Short introduction to functions as parameters

Many functions use primitive types and objects as parameters to control the logic in the function. It is also possible to use functions as parameters. This way the you can decide how to work with the function from the parameter. For example the function can be forwarded to another function or the called at any point in the other function.

/** *
 * This function has a primitive string as parameter. It is difficult to test because of the
 * "new Date()" often changing the value.
 */
function createLogMessage(message: string): string {
    return new Date().toISOString() + ':' + message
}

/** *
 * This function has a primitive string and an optional Date object as parameters.
 * This way the Date parameter does not need to be set in production use but can be set
 * in tests for better testing.
 * However, the Date object will contain the Date when the Date is created. For more complicated
 * use cases with multiple "new Date()" calls in the function or forwarding this is not useful.
 */
function createLogMessageWithDate(
    message: string,
    date: Date = new Date(),
): string {
    return date.toISOString() + ':' + message
}

/**
 * This function uses the funpara library. It has a primitive string and an optional DateFunction function parameter (i.e. a functions that returns a Date)
 * The "nowDateFunction" always returns "new Date()" so every time it is called it will create
 * the current Date.
 * If the DateFunction needs to be forwarded to another function without creating a new Date at
 * the time of the function call or something needs to be done before getting the current date
 * the function can be called at any time with "dateFunction()" to create the current Date.
 */
function createLogMessageWithDateFunction(
    message: string,
    dateFunction: DateFunction = nowDateFunction,
): string {
    // const doSomethingThatTakesLonger = someFunctionCall(dateFunction)
    return dateFunction().toISOString() + ':' + message
}

In tests/index.test.ts there are additional examples how the available code in funpara can be used.

Available functionality

Types

  • DateFunction: Type for a function that returns a Date.
  • FetchFunction: Type for a fetch function that given an input (url, request, etc.) and request init returns a Promise

Core functions

The following core functions can be used to create a new function or create dynamic return values in the function.

  • nowDateFunction: Returns a DateFunction that returns the current date.
  • fixedDateFunction: Returns a DateFunction that returns a fixed date that matches the given date string.
  • fixedResponseFetchFunction: Returns a FetchFunction that always returns a fixed response that matches the given body init and response init values.

Fixed value functions

The following functions return a fix value. This can be helpful for testing code with different scenarios.

  • testDateFunction: DateFunction that returns a fixed test date '1001-01-01T00:00:00.000Z'
  • notFoundFetchFunction: FetchFunction that returns a fixed Response with and empty body and status 404 (Not Found).
  • brokenJSONFetchFunction: FetchFunction that returns a fixed Response with broken JSON (missing bracket)
  • unknownContentTypeFetchFunction: FetchFunction that returns a fixed Response with an unknown Content-Type ('application/unknown')
  • timeoutFetchFunction: FetchFunction that returns a fixed Response that throws a Timeout error.

Contact

If you have questions or issues please visit our Issue page and open a new issue if there are no fitting issues for your topic yet.

License

funpara is under MIT-License.