All Projects â†’ asdfugil â†’ discord.bio

asdfugil / discord.bio

Licence: BSD-3-Clause license
🚀 A powerful Node.js wrapper of https://discords.com/bio

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to discord.bio

Fraternate
Fraternate is a standalone copy of the GitHub organization and user interaction framework. Built with Mongo dB | Node.js® | Express.js | Handlebars.js | Bootstrap.
Stars: ✭ 130 (+766.67%)
Mutual labels:  profile
Iky
OSINT Project
Stars: ✭ 203 (+1253.33%)
Mutual labels:  profile
Git Profile
Utility that helps you switch git configurations with ease.
Stars: ✭ 236 (+1473.33%)
Mutual labels:  profile
Webpackbar
Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
Stars: ✭ 1,887 (+12480%)
Mutual labels:  profile
Accounts Ui
Accounts UI for React in Meteor 1.3+
Stars: ✭ 197 (+1213.33%)
Mutual labels:  profile
Ehtrace
ATrace is a tool for tracing execution of binaries on Windows.
Stars: ✭ 218 (+1353.33%)
Mutual labels:  profile
Profileio
Static site and resume generator from YAML based profile for students and researchers. Generates ready to deploy branches via github actions.
Stars: ✭ 122 (+713.33%)
Mutual labels:  profile
Csaguzzlebundle
A bundle integrating Guzzle >=4.0 in Symfony
Stars: ✭ 248 (+1553.33%)
Mutual labels:  profile
Anmol098
If you are forking please do not forget to star the repo
Stars: ✭ 203 (+1253.33%)
Mutual labels:  profile
Metrics
📊 An infographics generator with 30+ plugins and 200+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!
Stars: ✭ 4,621 (+30706.67%)
Mutual labels:  profile
Bornmay
Awesome Github Profile Readme. Github ReadMe Github Profile Readme Dynamic Github ReadMe Dynamic Github Profile ReadMe. Please Star and Fork
Stars: ✭ 140 (+833.33%)
Mutual labels:  profile
Sapic
A useful tool to crop your Steam profile background for showcases.
Stars: ✭ 189 (+1160%)
Mutual labels:  profile
Github Profilinator
🚀 This tool contains mini GUI components that you can hook together to automatically generate markdown code for a perfect readme.
Stars: ✭ 225 (+1400%)
Mutual labels:  profile
Php Login System
Embeddable and Secure PHP Authentication System with Login, Signup, User Profiles, Profile Editing, Account Verification via Email, Password Reset System, Remember-Me Feature and more.
Stars: ✭ 135 (+800%)
Mutual labels:  profile
Pyinstrument
🚴 Call stack profiler for Python. Shows you why your code is slow!
Stars: ✭ 3,870 (+25700%)
Mutual labels:  profile
Desktop Profiles
An innovative desktop manager for macOS
Stars: ✭ 122 (+713.33%)
Mutual labels:  profile
Androidgodeye
An app performance monitor(APM) , like "Android Studio profiler", you can easily monitor the performance of your app real time in browser
Stars: ✭ 2,430 (+16100%)
Mutual labels:  profile
neko-box
😺 Pinnable dynamic Gist with your latest AniList activity.
Stars: ✭ 25 (+66.67%)
Mutual labels:  profile
Dotfiles
😈 Vim, git, zsh, tmux, and other goodies.
Stars: ✭ 240 (+1500%)
Mutual labels:  profile
Speedscope
🔬 A fast, interactive web-based viewer for performance profiles.
Stars: ✭ 3,256 (+21606.67%)
Mutual labels:  profile

discord.bio

This library scrapes the site https://discords.com/bio

NPM

To install:

npm i discord.bio 

Support

Please open a issue for any bugs/feature requests/help.

Contents

Changelogs

  • Fixed seaech and details functions.
  • Removed functions no longer availabile via the API.
  • Some properties changed as the upstream data also changed.
  • .search() and .details() are now methods of Bio.prototype

CLI wrapper

Please go to https://github.com/Assfugil/dbio-cli for details.

Features

  • 100% coverage of the public discord.bio api

  • Rate limit handling (REST API only)

  • Easy to use, parse gender,flags... etc. for you

Example

const { Bio } = require('discord.bio')
// Cookie is optional
const bio = new Bio({ cookie: '[REDACTED]' })
Promise.all([
    bio.details('nickchan'),
    bio.details('204616460797083648'), // This requires cookie to be set
    bio.search({ page: 2 }),
    bio.search({search: 'a',page: 1}),
    ])
.then(([profile, another_profile, all_profiles, search_result]) => {
    console.log(profile) // Profile of user with slug 'nickchan'
    console.log(another_profile) // Profile of user with ID '204616460797083648'
    console.log(all_profile) // Page 2 of all profiles
    console.log(search_result) // Page 1 of results of search for 'a'
})

Documentation

Master branch (stable version): Go to https://discord-bio.js.org

Other branches: Please refer to the /docs folder

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].