feat(node): support connection string syntax for nodejs client creation - #3917
Open
T1B0 wants to merge 1 commit into
Open
feat(node): support connection string syntax for nodejs client creation#3917T1B0 wants to merge 1 commit into
T1B0 wants to merge 1 commit into
Conversation
T1B0
force-pushed
the
add-connection-string-support-node-sdk
branch
from
August 18, 2026 16:16
2afce42 to
e9ffac3
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3917 +/- ##
============================================
- Coverage 83.84% 83.73% -0.12%
Complexity 1358 1358
============================================
Files 1212 1213 +1
Lines 166831 167049 +218
Branches 134304 134352 +48
============================================
- Hits 139887 139885 -2
- Misses 23305 23524 +219
- Partials 3639 3640 +1
🚀 New features to boost your workflow:
|
T1B0
force-pushed
the
add-connection-string-support-node-sdk
branch
3 times, most recently
from
August 19, 2026 18:26
3dae52e to
604cca3
Compare
T1B0
force-pushed
the
add-connection-string-support-node-sdk
branch
from
August 20, 2026 12:59
604cca3 to
6a3b7a1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR address?
this PR add node sdk support for connection string syntax on client creation
accept common url like syntax
new Client("iggy://iggy:iggy@127.0.0.1:8090");note
node:urlmodule was not used since it would have introduced small differencez with rust and other sdk parsing, so connection string is manually parsed to match others sdk behaviors.