All Projects → Mottie → github-reserved-names

Mottie / github-reserved-names

Licence: MIT license
Get a list, or check if a user or organization name is reserved by GitHub

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to github-reserved-names

Vue Orgchart
It's a simple and direct organization chart plugin. Anytime you want a tree-like chart, you can turn to OrgChart.
Stars: ✭ 182 (+378.95%)
Mutual labels:  organization
ansible-role-github-users
Ansible Role - GitHub Users
Stars: ✭ 49 (+28.95%)
Mutual labels:  users
mmp
📘 Light JavaScript library to create mind map applications.
Stars: ✭ 74 (+94.74%)
Mutual labels:  organization
Orgmanager
Invite System for GitHub Organizations
Stars: ✭ 196 (+415.79%)
Mutual labels:  organization
project-organization
YunoHost project organization
Stars: ✭ 31 (-18.42%)
Mutual labels:  organization
scif
scientific filesystem: a filesystem organization for scientific software and metadata
Stars: ✭ 30 (-21.05%)
Mutual labels:  organization
Follow Github Organisation
Get notified when a new repository is created in a GitHub organisation
Stars: ✭ 143 (+276.32%)
Mutual labels:  organization
MeteorCandy-meteor-admin-dashboard-devtool
The Fast, Secure and Scalable Admin Panel / Dashboard for Meteor.js
Stars: ✭ 50 (+31.58%)
Mutual labels:  users
random-users-details
Random Users details in flutter from randomusers api
Stars: ✭ 14 (-63.16%)
Mutual labels:  users
stweet
Advanced python library to scrap Twitter (tweets, users) from unofficial API
Stars: ✭ 287 (+655.26%)
Mutual labels:  users
Vue Org Chart
Manage and publish your interactive organization chart (orgchart), 100% free and no install required: just copy a folder to any location
Stars: ✭ 207 (+444.74%)
Mutual labels:  organization
wp-user-avatars
Allows registered users to upload and select their own avatars
Stars: ✭ 32 (-15.79%)
Mutual labels:  users
sensible-github-labels
Github labels for teams that like workflows and structure
Stars: ✭ 121 (+218.42%)
Mutual labels:  organization
Orgchart
It's a simple and direct organization chart plugin. Anytime you want a tree-like chart, you can turn to OrgChart.
Stars: ✭ 2,325 (+6018.42%)
Mutual labels:  organization
view-admin-as
View the WordPress admin as a different role, switch between users, temporarily change your capabilities, set default screen settings for roles, manage your roles and capabilities.
Stars: ✭ 44 (+15.79%)
Mutual labels:  users
Resources
Project proposals
Stars: ✭ 155 (+307.89%)
Mutual labels:  organization
rocket auth
An implementation for an authentication API for Rocket applications.
Stars: ✭ 65 (+71.05%)
Mutual labels:  users
Active Directory Scripts
Making my local storage of useful AD Scripts available to everyone.
Stars: ✭ 46 (+21.05%)
Mutual labels:  users
django-user-management
User management model mixins and api views.
Stars: ✭ 56 (+47.37%)
Mutual labels:  users
automate-branch-rules-cli
The tool lets you automate the addition, removal or alteration of the branch protection rules for 1 or more branches & repositories in one go.
Stars: ✭ 29 (-23.68%)
Mutual labels:  organization

GitHub-reserved-names NPM Version

Get a list, or check if a user or organization name is reserved by GitHub

The list comprises user or organization names that GitHub reserves for special use, e.g. the new in https://github.com/new is a reserved name and is contained in this list.

Update 11/11/2019 Sites are now reported as being "unavailable" or "taken"; we can no longer determine if a name is reserved. All new additions will be included in the reserved list and marked as reserved.

This is by no means a complete list of reserved GitHub user/organization names.

The list in this repository was gathered from several sources:

See the history page for more details and how you can help expand this list.

Oddballs

There are a few names that have been added or omitted because of their behavior, these are listed in the oddballs read me.

In version 1.1.0, an oddballs.json has been included along with an API function & command-line interface (CLI; removed in v2.0.0). The data returned by the oddballs function is described in the oddballs read me.

Install

$ npm install --save github-reserved-names

Usage

Pass a name (e.g. settings from https://github.com/settings) parameter to the check or oddballs function.

const isReserved = require('github-reserved-names');

isReserved.check("settings");
//=> true

isReserved.check("google");
//=> false

isReserved.all;
// [ 400, 401, 402, ..., "www8", "www9" ]

isReserved.oddballs("avatars");
// { reserved: true, taken: true, typical: true, included: false }

isReserved.oddballs();
// [ "account", "apps", ..., "wiki", "windows" ]

NOTE: Also make sure to check that the username doesn't include invalid alphanumeric characters; such is the case for the url of a private feed.

API

.all

Type: array

Current list of gathered GitHub reserved names.

.check(name)

Type: function

Returns a boolean of true if the name parameter is in the reserved list, false if not.

.oddballs(name)

Type: function

If name is in the list, this function returns data related to the named oddball; otherwise it returns an array of oddballs pages.

CLI

Removed in v2.0.0.

Related

  • github-url-detection - Check what type of GitHub page you’re on (includes github-reserved-names).

License

MIT

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