baileys

(★ 91)

Enhanced Baileys v7 with fixes for newsletter media uploads, plus support for interactive messages, albums, and additional message types.

File Explorer

  • engine-requirements.js
  • LICENSE
  • package.json
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

bat

View Details ▼

Print and concatenate files.
A `cat` clone with syntax highlighting and Git integration.
See also: `cat`.

bat {{path/to/file1 path/to/file2 ...}}

Pretty print the contents of one or more files to `stdout`:

bat {{path/to/file1 path/to/file2 ...}} > {{path/to/target_file}}

Concatenate several files into the target file:

bat {{[-pp|--style plain --pager never]}} {{path/to/file}}

Remove decorations and disable paging:

🔍

logger

View Details ▼

Add messages to syslog.

logger {{message}}

Log a message to syslog:

logger {{message}}

Log a message to syslog:

echo {{log_entry}} | logger

Take input from `stdin` and log to syslog:

🔍

npm

View Details ▼

JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.

npm init {{[-y|--yes]}}

Create a `package.json` file with default values (omit `--yes` to do it interactively):

npm {{[i|install]}}

Download all the packages listed as dependencies in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

🔍

powershell

View Details ▼

This command may be mistaken as the cross-platform version of PowerShell (formerly known as PowerShell Core), which uses `pwsh` instead of `powershell`.
The original `powershell` command in Windows is still available to use the legacy Windows version of PowerShell (version 5.1 and below).

tldr pwsh

View the documentation for the command referring to the latest, cross-platform version of PowerShell (version 6 and above):

powershell

Start an interactive shell session:

tldr powershell {{[-p|--platform]}} windows

View the documentation for the command referring to the legacy Windows PowerShell (version 5.1 and below):

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

lid

View Details ▼

Display a user's groups or a group's users.

sudo lid {{username}}

List primary and secondary groups of a specific user:

sudo lid --group {{group_name}}

List users of a specific group:

# Project Badges

// repository documentation