├── .gitignore ├── .npmrc ├── README.md ├── bench-it.js ├── console-output.js ├── fixtures ├── .env.sample ├── lodash.fp.js └── ts-sample.ts ├── index.js ├── package.json ├── pnpm-lock.yaml ├── src ├── babel-benchmark.js ├── dotenv-benchmark.js ├── fastify-benchmark-disabled.js ├── fastify-server.js ├── lodash-benchmark.js ├── moment-benchmark.js ├── pino-benchmark.js ├── prettier-benchmark.js ├── typescript-benchmark.js ├── underscore-benchmark.js └── winston-benchmark.js └── worker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /bench-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/bench-it.js -------------------------------------------------------------------------------- /console-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/console-output.js -------------------------------------------------------------------------------- /fixtures/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/fixtures/.env.sample -------------------------------------------------------------------------------- /fixtures/lodash.fp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/fixtures/lodash.fp.js -------------------------------------------------------------------------------- /fixtures/ts-sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/fixtures/ts-sample.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/babel-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/babel-benchmark.js -------------------------------------------------------------------------------- /src/dotenv-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/dotenv-benchmark.js -------------------------------------------------------------------------------- /src/fastify-benchmark-disabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/fastify-benchmark-disabled.js -------------------------------------------------------------------------------- /src/fastify-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/fastify-server.js -------------------------------------------------------------------------------- /src/lodash-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/lodash-benchmark.js -------------------------------------------------------------------------------- /src/moment-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/moment-benchmark.js -------------------------------------------------------------------------------- /src/pino-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/pino-benchmark.js -------------------------------------------------------------------------------- /src/prettier-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/prettier-benchmark.js -------------------------------------------------------------------------------- /src/typescript-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/typescript-benchmark.js -------------------------------------------------------------------------------- /src/underscore-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/underscore-benchmark.js -------------------------------------------------------------------------------- /src/winston-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/src/winston-benchmark.js -------------------------------------------------------------------------------- /worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesource/nodejs-package-benchmark/HEAD/worker.js --------------------------------------------------------------------------------