upstash-redis VS is-not-bun

Compare upstash-redis vs is-not-bun and see what are their differences.

upstash-redis

HTTP based Redis Client for Serverless and Edge Functions (by upstash)

is-not-bun

Return true if you are running not in Bun. (by JLarky)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
upstash-redis is-not-bun
2 1
616 1
3.6% -
7.9 4.9
about 12 hours ago 8 months ago
TypeScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

upstash-redis

Posts with mentions or reviews of upstash-redis. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-23.

is-not-bun

Posts with mentions or reviews of is-not-bun. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-23.
  • Creating an NPM Package in 2024 (Deno, dnt)
    8 projects | dev.to | 23 Sep 2023
    #!/usr/bin/env -S deno run --allow-read --allow-write --allow-net --allow-env --allow-run // Copyright 2018-2022 the oak authors. All rights reserved. MIT license. /** * This is the build script for building npm package. * * @module */ import { build, emptyDir } from "https://deno.land/x/[email protected]/mod.ts"; async function start() { await emptyDir("./npm"); await build({ entryPoints: [ // change me "./mod.ts", { kind: "bin", name: "is-not-bun", path: "./cli.ts", }, ], outDir: "./npm", shims: {}, test: false, typeCheck: "both", compilerOptions: { importHelpers: false, sourceMap: true, target: "ES2021", lib: ["esnext", "dom", "dom.iterable"], }, package: { name: "is-not-bun", // change me version: Deno.args[0], description: "Return true if you are running not in Bun.", // change me license: "MIT", keywords: ["bun"], // change me engines: { node: ">=8.0.0", }, repository: { type: "git", url: "git+https://github.com/JLarky/is-not-bun.git", // change me }, bugs: { url: "https://github.com/JLarky/is-not-bun/issues", // change me }, dependencies: { "is-bun": "*", // change me }, devDependencies: {}, }, }); await Deno.copyFile("LICENSE", "npm/LICENSE"); await Deno.copyFile("README.md", "npm/README.md"); } start();

What are some alternatives?

When comparing upstash-redis and is-not-bun you can also consider the following projects:

socket.io-redis - Adapter to enable broadcasting of events to multiple separate socket.io server nodes.

is-bun - Return true if you are running in Bun.

node-redis - A high-performance Node.js Redis client. [Moved to: https://github.com/redis/node-redis]

SimpleWebAuthn - WebAuthn, Simplified. A collection of TypeScript-first libraries for simpler WebAuthn integration. Supports modern browsers, Node, Deno, and more.

node-redis - Redis Node.js client

oak - A middleware framework for handling HTTP with Deno, Node, Bun and Cloudflare Workers 🐿️ 🦕

publint - Lint packaging errors

1Backend - Run your web apps easily with a complete platform that you can install on any server. Build composable microservices and lambdas.

bun - Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

upstash-kafka - HTTP based Kafka Client for Serverless and Edge Functions

dnt - Deno to npm package build tool.