npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

expo-bing-chat

v0.2.7

Published

Expo client for the unofficial Bing Chat API.

Downloads

6

Readme

Bing Chat API

Node.js client for the unofficial Bing Chat API. It's like ChatGPT on steroids 🔥

NPM Build Status MIT License Prettier Code Formatting

Intro

This package is a Node.js wrapper around Bing Chat by Microsoft. TS batteries included. ✨

Warning This package is a reverse-engineered hack. I do not expect it to continue working long-term, and it is not meant for use in production. I'm building this in public, and you can follow the progress on Twitter @transitive_bs.

Demo

Install

npm install bing-chat

Make sure you're using node >= 18 so fetch is available.

Usage

You need access to Bing Chat OR a valid cookie from someone who has access.

The cookie you need from Bing is the _U cookie (or just all of the cookies concatenated together; both will work).

import { BingChat } from 'bing-chat'

async function example() {
  const api = new BingChat({
    cookie: process.env.BING_COOKIE
  })

  const res = await api.sendMessage('Hello World!')
  console.log(res.text)
}

You can follow-up messages to continue the conversation. See demos/demo-conversation.ts for an example.

Note that Bing Chat conversations expire after about 20 minutes, so they're not meant to be long-term objects.

You can add streaming via the onProgress handler:

const res = await api.sendMessage('Write a 500 word essay on frogs.', {
  // print the partial response as the AI is "typing"
  onProgress: (partialResponse) => console.log(partialResponse.text)
})

// print the full text at the end
console.log(res.text)

See demos/demo-on-progress.ts for a full example of streaming support.

Projects

If you create a cool integration, feel free to open a PR and add it to the list.

Compatibility

  • This package is ESM-only.
  • This package supports node >= 18.
  • This module assumes that fetch is installed globally.
  • If you want to build a website using bing-chat, we recommend using it only from your backend API

Credit

Related

  • chatgpt - Node.js client for the unofficial ChatGPT API. Same author as this package.
  • discord - Join our discord server for hackers building on top of ChatGPT / Bing / LLMs.

License

MIT © Travis Fischer

If you found this project interesting, please consider sponsoring me or following me on twitter