Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@replit/database

Package Overview
Dependencies
Maintainers
19
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@replit/database - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

2

package.json
{
"name": "@replit/database",
"version": "2.0.1",
"version": "2.0.2",
"description": "Client for Repl.it Database",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -12,4 +12,4 @@ [![npm version](https://badge.fury.io/js/%40replit%2Fdatabase.svg)](https://badge.fury.io/js/%40replit%2Fdatabase)

const client = new Client();
await Client.set("key", "value");
let key = await Client.get("key");
await client.set("key", "value");
let key = await client.get("key");
console.log(key);

@@ -30,3 +30,3 @@ ```

```js
Client.get("key", { raw: false }).then(console.log);
client.get("key", { raw: false }).then(console.log);
```

@@ -33,0 +33,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc