Skip to content

Commit

Permalink
wip Benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh committed Jun 9, 2023
1 parent 464b098 commit c28ae11
Show file tree
Hide file tree
Showing 54 changed files with 20,844 additions and 13 deletions.
44 changes: 44 additions & 0 deletions packages/benchmarks/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "edgedb-benchmarks",
"version": "1.0.0",
"description": "Benchmarks for EdgeDB JavaScript client libraries",
"homepage": "https://edgedb.com/docs",
"author": "EdgeDB <info@edgedb.com>",
"engines": {
"node": ">= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edgedb/edgedb-js.git"
},
"main": "./dist/index.node.js",
"types": "./dist/index.node.d.ts",
"license": "Apache-2.0",
"sideEffects": false,
"files": [
"/dist"
],
"devDependencies": {
"@types/jest": "^29.5.1",
"benny": "^3.7.1",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"tsx": "3.12.6",
"typescript": "^5.0"
},
"scripts": {
"benchmark": "tsx src/benchmark.ts"
},
"bugs": {
"url": "https://github.com/edgedb/edgedb-js/issues"
},
"keywords": [],
"dependencies": {
"tinybench": "^2.5.0",
"ts-node": "^10.9.1",
"ts48": "npm:typescript@4.8.4",
"ts49": "npm:typescript@4.9.5",
"ts50": "npm:typescript@5.0.4",
"ts51": "npm:typescript@5.1.3"
}
}
5 changes: 5 additions & 0 deletions packages/benchmarks/project-fixture/dbschema/default.esdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module default {
type Person {
required name: str;
}
}
153 changes: 153 additions & 0 deletions packages/benchmarks/project-fixture/dbschema/edgeql-js/__spec__.ts

Large diffs are not rendered by default.

Loading

0 comments on commit c28ae11

Please sign in to comment.