is-not-bun

Return true if you are running not in Bun. (by JLarky)

Is-not-bun Alternatives

Similar projects and alternatives to is-not-bun

  • bun

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

  • oak

    19 is-not-bun VS oak

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

  • 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 logo
  • dnt

    Deno to npm package build tool.

  • SimpleWebAuthn

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

  • publint

    6 is-not-bun VS publint

    Lint packaging errors

  • upstash-redis

    HTTP based Redis Client for Serverless and Edge Functions

  • is-bun

    1 is-not-bun VS is-bun

    Return true if you are running in Bun.

  • 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.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better is-not-bun alternative or higher similarity.

is-not-bun reviews and mentions

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();

Stats

Basic is-not-bun repo stats
1
1
4.9
8 months ago

JLarky/is-not-bun is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of is-not-bun is TypeScript.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com