René's URL Explorer Experiment


Title: sqlite: add batched async Database API by BurningEnlightenment · Pull Request #62015 · nodejs/node · GitHub

Open Graph Title: sqlite: add batched async Database API by BurningEnlightenment · Pull Request #62015 · nodejs/node

X Title: sqlite: add batched async Database API by BurningEnlightenment · Pull Request #62015 · nodejs/node

Description: This PR adds the asynchronous complements Database and Statement to the node:sqlite module. Given that a single sqlite db connection cannot scale beyond a single CPU core, (unlike the old sqlite3) this implementation avoids unordered dispatches to the thread pool by maintaining a strict FIFO operation queue. This allows usage of multiple db connections in parallel without relying on the internal db connection mutex (=> SQLITE_THREADSAFE=2 is sufficient). Furthermore I've favored throughput over latency, e.g. it collects asynchronous operations on a db connection and dispatches them in batches to the thread pool. This helps to amortize the inherent synchronization overhead over multiple operations and it also improves cache locality. The implementation effort has reached a maturity level where the overall approach should only require relatively small incremental changes to reach the outlined API scope. Briefly the following things work: Opening a db connection and (asynchronously) preparing statements. Disposal of db connection and statement instances.1 Database.prototype.exec() without a prepared statement. Statement.prototype.get()|all()|run() with binding parameters (though currently not as fancy as the sync variant). Implicit microtask-based batching of all previously mentioned operations (inspired by kysely). Things which still need work: Function parameter validation should not throw but return rejected promises. Implementing the remaining APIs: Database#location(dbName?: string): Promise Database#loadExtension(path: string): Promise; Database#enableLoadExtension(allow: boolean): Promise Database#enableDefensive(active: boolean): Promise Probably a few extensions to the test suite here and there. Proper API documentation From a brief look it seems that direct usage of v8::Promise looses the async context/callstack. I need some guidance on how to fix that. Potential follow-up improvements: The memory allocation strategy should be tweaked to use std::pmr::monotonic_buffer_resource in a few places. An explicit batching API, either callback- or Symbol.dispose/using-based Explore an API to move a db connection from Database to DatabaseSync and vice versa Fixes #54307 Previous attempt #59109 (I've only taken the test suites from there). API synopsis interface StatementOptions { readBigInts?: boolean; returnArrays?: boolean; // NOT GOING TO BE IMPLEMENTED HERE: // allowBareNamedParameters // allowUnknownNamedParameters } interface DatabaseOpenOptions extends StatementOptions { open?: boolean; readOnly?: boolean; enableForeignKeyConstraints?: boolean; enableDoubleQuotedStringLiterals?: boolean; allowExtension?: boolean; timeout?: number; defensive?: boolean; limits?: object; } interface DatabaseCtor { new(path: string, options?: DatabaseOpenOptions): Database; } interface Database { open(): void; isOpen: boolean; close(): Promise; [Symbol.asyncDispose](): Promise; location(dbName?: string): Promise; loadExtension(path: string): Promise; enableLoadExtension(allow: boolean): Promise; enableDefensive(active: boolean): Promise; isInTransaction(): Promise; exec(sql: string): Promise; prepare(sql: string, options?: StatementOptions): Promise; } type Literal = null | number | bigint | string | ArrayBufferView; type BindParams = Record | Array; type RowResult = Record | Array; interface Statement { [Symbol.dispose](): void; get(params?: BindParams): Promise; all(params?: BindParams): Promise; run(params?: BindParams): Promise<{ changes: number, lastInsertRowid: number }>; } Developer's Certificate of Origin 1.1 By making a contribution to this project, I certify that: (a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or (b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or (c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it. (d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved. Footnotes I've followed the spirit of DEP0137; should probably be reconciled with the sync API at some point. ↩

Open Graph Description: This PR adds the asynchronous complements Database and Statement to the node:sqlite module. Given that a single sqlite db connection cannot scale beyond a single CPU core, (unlike the old sqlite3) ...

X Description: This PR adds the asynchronous complements Database and Statement to the node:sqlite module. Given that a single sqlite db connection cannot scale beyond a single CPU core, (unlike the old sqlite3) ...

Opengraph URL: https://github.com/nodejs/node/pull/62015

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/commits/:range(.:format)
route-controllerpull_requests
route-actioncommits
fetch-noncev2:63c3d32d-6ede-84cc-e79e-7de3f93d1af4
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id8280:3CB0EF:36240F0:47E7A85:6A655769
html-safe-nonce5841a7affb6e5acb80b65507aea6c86132fb97e8b6dd2079d0594813cc845ac6
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MjgwOjNDQjBFRjozNjI0MEYwOjQ3RTdBODU6NkE2NTU3NjkiLCJ2aXNpdG9yX2lkIjoiNDUxMzcyNTE1NjI4OTc2MzE3NyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacbb911c4a042cf6f8bc9567a7424a3e009862d8805ce0d499b88ec0f44c584c1a
hovercard-subject-tagpull_request:3333417406
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/commits
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
twitter:imagehttps://avatars.githubusercontent.com/u/5796962?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/5796962?s=400&v=4
og:image:altThis PR adds the asynchronous complements Database and Statement to the node:sqlite module. Given that a single sqlite db connection cannot scale beyond a single CPU core, (unlike the old sqlite3) ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None52c76df668885aaff23b50bdca1fa1ea44ac9c1553e888ebc70ff1e4daa4625b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release309153364422b3c499922d1a2a6404910a58ed8e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F62015%2Fcommits%2F5d64e3d93126626d008eb1045d0a54af398fd99b
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F62015%2Fcommits%2F5d64e3d93126626d008eb1045d0a54af398fd99b
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fcommits&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
Reloadhttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
Reloadhttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
Please reload this pagehttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36.1k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.3k https://github.com/nodejs/node/issues
Pull requests 1.1k https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fnodejs%2Fnode%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fnodejs%2Fnode%2Fissues%2Fnew%2Fchoose
BurningEnlightenmenthttps://github.com/BurningEnlightenment
nodejs:mainhttps://github.com/nodejs/node/tree/main
BurningEnlightenment:dev/sqlite-batched-asynchttps://github.com/BurningEnlightenment/nodejs/tree/dev/sqlite-batched-async
Conversation 11 https://github.com/nodejs/node/pull/62015
Commits 26 https://github.com/nodejs/node/pull/62015/commits
Checks 0 https://github.com/nodejs/node/pull/62015/checks
Files changed https://github.com/nodejs/node/pull/62015/files
Please reload this pagehttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
sqlite: add batched async Database API https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#top
Show all changes 26 commits https://github.com/nodejs/node/pull/62015/files
2e66b8c sqlite: extract `DatabaseSync` tmpl into separate function BurningEnlightenment Feb 19, 2026 https://github.com/nodejs/node/pull/62015/commits/2e66b8cd94665cca68ea246302301ce4952ab6f8
5d64e3d sqlite: dedupe `SQLTagStore` prototype instances BurningEnlightenment Feb 19, 2026 https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
9e288e9 sqlite: extract async-agnostic code into a common base BurningEnlightenment Feb 19, 2026 https://github.com/nodejs/node/pull/62015/commits/9e288e9db8b71578f0670cb7ccd8a3931e49a686
2aabaa9 sqlite: set threading mode to multithreaded geeksilva97 Dec 1, 2025 https://github.com/nodejs/node/pull/62015/commits/2aabaa99ec05a497a7b09fc31ed9d136f89e5020
aec981a test: add sqlite async test suite geeksilva97 Feb 19, 2026 https://github.com/nodejs/node/pull/62015/commits/aec981af52efa8e6b571e65f4018110801dbd5c4
654ebd5 sqlite: extract common database ctor option parsing BurningEnlightenment Feb 19, 2026 https://github.com/nodejs/node/pull/62015/commits/654ebd5db41f6f43bf6ab32b356b589a75f202bd
78f4e12 sqlite: add Database class scaffolding BurningEnlightenment Feb 21, 2026 https://github.com/nodejs/node/pull/62015/commits/78f4e12b5f5d23afca7082966d34502668d72fc4
82c136f sqlite: implement batched async operation scheduling BurningEnlightenment Feb 26, 2026 https://github.com/nodejs/node/pull/62015/commits/82c136f6095ec19c1f425956fa58cdc11dc769da
4c068d5 sqlite: add async Statement creation/disposal support BurningEnlightenment Feb 26, 2026 https://github.com/nodejs/node/pull/62015/commits/4c068d5ddc7217025d19e625ae10fae963df478e
855837b sqlite: implement basic async value passing and get BurningEnlightenment Feb 26, 2026 https://github.com/nodejs/node/pull/62015/commits/855837bdfe2562851e43ab9703e32f5ae2ea8417
1eceaf7 sqlite: remove function-local using-statements BurningEnlightenment Feb 26, 2026 https://github.com/nodejs/node/pull/62015/commits/1eceaf7b856e497188ebf0dcb1cf8ed4c00f7b49
226cf2b sqlite: implement `Statement.prototype.all()` BurningEnlightenment Mar 2, 2026 https://github.com/nodejs/node/pull/62015/commits/226cf2b40a94ff2b194c5aa500ab40f96a8c905c
9a33662 sqlite: reject instead of throw on invalid state BurningEnlightenment Mar 2, 2026 https://github.com/nodejs/node/pull/62015/commits/9a33662fc7248de427a759854becb0d140888278
8088443 sqlite: reject instead of throw on invalid args BurningEnlightenment Mar 2, 2026 https://github.com/nodejs/node/pull/62015/commits/808844382b3cb3dfcccd4b45f48600a51f3975de
d50bd9b sqlite: implement `Statement.prototype.run()` BurningEnlightenment Mar 2, 2026 https://github.com/nodejs/node/pull/62015/commits/d50bd9b4d9b11e045463f4112f40fd19a6168a15
5d6e3b9 sqlite: remove obsolete TODO comments BurningEnlightenment Mar 3, 2026 https://github.com/nodejs/node/pull/62015/commits/5d6e3b977c992efbdd3b0e414786db9fe7881662
f665396 sqlite: implement `Database#isInTransaction()` BurningEnlightenment Mar 3, 2026 https://github.com/nodejs/node/pull/62015/commits/f665396dc9ba61176e2774db76b16f815715ff96
b2c548b sqlite: implement `Database#location()` BurningEnlightenment Mar 3, 2026 https://github.com/nodejs/node/pull/62015/commits/b2c548badb66fe7b4402ad814fb380a04fa40385
ccce723 sqlite: implement StatementOptions support BurningEnlightenment Mar 3, 2026 https://github.com/nodejs/node/pull/62015/commits/ccce7237a535992366cd50ba2b904d02ca92bdd3
f74aa92 sqlite: implement `Database#enableDefensive()` BurningEnlightenment Mar 4, 2026 https://github.com/nodejs/node/pull/62015/commits/f74aa9292db8db474c36452eb0356de85614acf1
2c17bf3 sqlite: implement extension loading API for Database BurningEnlightenment Mar 4, 2026 https://github.com/nodejs/node/pull/62015/commits/2c17bf3bb24d258e6f9b5fa4bc5301b060b09e8e
b2aeb3f sqlite: reformat with clang-format version 15 BurningEnlightenment Mar 4, 2026 https://github.com/nodejs/node/pull/62015/commits/b2aeb3fb1ea3cbf494bf1a6e1843f333e8cee089
a643bcb test: properly skip Database tests if sqlite is missing BurningEnlightenment Mar 4, 2026 https://github.com/nodejs/node/pull/62015/commits/a643bcb4d427433f8541d91e0b050f0b86c6d936
d8b3ea7 test: improve detection of un-closed sqlite handles BurningEnlightenment Mar 4, 2026 https://github.com/nodejs/node/pull/62015/commits/d8b3ea7ee3c8588cbdeddbcd485eb969b8880bb9
c57866e test: remove sqlite `Statement#iterator` tests BurningEnlightenment Mar 4, 2026 https://github.com/nodejs/node/pull/62015/commits/c57866ebb34ffd9cdaddab7d7ca0d88e33f6cb1a
e5ab4cc sqlite: remove usage of `std::pmr` BurningEnlightenment Mar 10, 2026 https://github.com/nodejs/node/pull/62015/commits/e5ab4cc69a8b7dbc9f74a44a01bb7e4c0f19ae45
Clear filters https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
Please reload this pagehttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
Please reload this pagehttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
env_properties.h https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-3c4caf9223a0c3a6efbb87207e13f002d4209a6c4db5d9c113ac5d7112ef4474
node_sqlite.cc https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-dd810db4fe69364c3a67a274e0725f386040c0fd1dcfade7093f23c8514328ae
Prev https://github.com/nodejs/node/pull/62015/commits/2e66b8cd94665cca68ea246302301ce4952ab6f8
Next https://github.com/nodejs/node/pull/62015/commits/9e288e9db8b71578f0670cb7ccd8a3931e49a686
Please reload this pagehttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b
https://github.com/BurningEnlightenment
BurningEnlightenmenthttps://github.com/nodejs/node/commits?author=BurningEnlightenment
src/env_properties.hhttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-3c4caf9223a0c3a6efbb87207e13f002d4209a6c4db5d9c113ac5d7112ef4474
View file https://github.com/nodejs/node/blob/5d64e3d93126626d008eb1045d0a54af398fd99b/src/env_properties.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/nodejs/node/pull/62015/commits/{{ revealButtonHref }}
https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-3c4caf9223a0c3a6efbb87207e13f002d4209a6c4db5d9c113ac5d7112ef4474
https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-3c4caf9223a0c3a6efbb87207e13f002d4209a6c4db5d9c113ac5d7112ef4474
src/node_sqlite.cchttps://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-dd810db4fe69364c3a67a274e0725f386040c0fd1dcfade7093f23c8514328ae
View file https://github.com/nodejs/node/blob/5d64e3d93126626d008eb1045d0a54af398fd99b/src/node_sqlite.cc
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/nodejs/node/pull/62015/commits/{{ revealButtonHref }}
https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-dd810db4fe69364c3a67a274e0725f386040c0fd1dcfade7093f23c8514328ae
https://github.com/nodejs/node/pull/62015/commits/5d64e3d93126626d008eb1045d0a54af398fd99b#diff-dd810db4fe69364c3a67a274e0725f386040c0fd1dcfade7093f23c8514328ae
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.