publint VS is-not-bun

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

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
publint is-not-bun
6 1
892 1
- -
8.3 4.9
6 days ago 8 months ago
JavaScript 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.

publint

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

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 publint and is-not-bun you can also consider the following projects:

upstash-redis - HTTP based Redis Client for Serverless and Edge Functions

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

openai-node - The official Node.js / Typescript library for the OpenAI API

esm-env

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

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

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

stepci - Automated API Testing and Quality Assurance

dnt - Deno to npm package build tool.