Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: redis/node-redis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: redis/node-redis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: emb-examples
Choose a head ref
  • 20 commits
  • 208 files changed
  • 13 contributors

Commits on Jan 22, 2023

  1. Initial example

    itamarhaber committed Jan 22, 2023
    Configuration menu
    Copy the full SHA
    d9c815f View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. Adds anchors

    itamarhaber committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    5c835d1 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. Add Redis.io code examples

    - Add set & get example
    - Use bash script to test doc tests
    - Add package.json to doctests
    - Add search-quickstart
    uglide committed May 17, 2023
    Configuration menu
    Copy the full SHA
    caaca48 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2023

  1. [DOC-2373] adds js samples to match search-quickstart md (#2538)

    * [DOC-2373] adds js samples to match search-quickstart md
    
    * Fixes step matching for the Search quickstart
    
    * Update search-quickstart.js
    
    ---------
    
    Co-authored-by: Justin Castilla <[email protected]>
    Co-authored-by: Elena Kolevska <[email protected]>
    Co-authored-by: Leibale Eidelman <[email protected]>
    4 people authored Jun 22, 2023
    Configuration menu
    Copy the full SHA
    0588b38 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Add hash tutorial

    uglide committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    d268364 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. DOC 2526 - Add code examples for the List tutorial in Node.js (#2583)

    * DOC-2526 Add code examples for the List tutorial
    
    * adds formatting
    
    ---------
    
    Co-authored-by: Justin Castilla <[email protected]>
    justincastilla and Justin Castilla authored Aug 21, 2023
    Configuration menu
    Copy the full SHA
    22f8b2f View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Doc 2542 - Add code examples for the Geospatial tutorial (#2585)

    * DOC-2542 Add code examples for the Geospatial tutorial
    
    * adds spaces after properties in objects
    
    ---------
    
    Co-authored-by: Justin Castilla <[email protected]>
    justincastilla and Justin Castilla authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    70f3606 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Configuration menu
    Copy the full SHA
    e7347f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0f3d0f3 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    6a3ea59 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. fix: XRangeOptions COUNT (#2791)

    Co-authored-by: larry <[email protected]>
    ljy1017010 and larry authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    06e91d0 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Add back accidentally deleted doctests file (#2821)

    * Add back accidentally deleted doctest file
    
    * Update string-set-get-example.js
    dwdougherty authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    9f810c2 View commit details
    Browse the repository at this point in the history
  2. DOC-4194: add TCEs to the exact match query page (COMMIT FIRST!) (#2830)

    * DOC-4194: add TCEs to the exact match query page
    
    * Preemptive modifications from previous reviews
    dwdougherty authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    ebd2037 View commit details
    Browse the repository at this point in the history
  3. TCEs for select command pages (#2824)

    * TCEs for select command pages
    
    * Preemptive modifications from previous reviews
    
    * Update to previous commit
    dwdougherty authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    fd7b10b View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. Configuration menu
    Copy the full SHA
    49fdb79 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. Configuration menu
    Copy the full SHA
    c1edc2e View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Update cmds-hash.js (#2863)

    Update comment-line (58) from `foo` to `null`
    katongole-isaac authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    001087f View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2025

  1. DOC-4423: add TCEs for various command pages (#2885)

    * DOC-4423: add TCEs for various command pages
    
    * fix problematic doctest
    
    from redis docs for ACL DELUSER:
    Delete all the specified ACL users and terminate all the connections
     that are authenticated with such users
    
    Nodejs complains: Warning: Detected unsettled top-level await
    which in turn gives the error code 13 in the workflow
    
    await client.auth({ username: 'test-user' ...});
    // deleting the user that is currently logged in -> bad
    await client.sendCommand(['ACL', 'DELUSER', 'test-user']);
    await client.quit()
    
    fix: authenticate with the default user before deleting the test-user
    
    ---------
    
    Co-authored-by: Nikolay Karadzhov <[email protected]>
    dwdougherty and nkaradzhov authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    cb26059 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2025

  1. Configuration menu
    Copy the full SHA
    7c4f0ea View commit details
    Browse the repository at this point in the history

Commits on May 28, 2025

  1. fix(doctest): properly provide the path param (#2978)

    path param was not properly provided to some commands. javascript doesnt catch this error, but ts does
    nkaradzhov authored May 28, 2025
    Configuration menu
    Copy the full SHA
    dea0c64 View commit details
    Browse the repository at this point in the history
Loading