diff --git a/.github/funding.yml b/.github/funding.yml new file mode 100644 index 00000000000..374e7bfc8bb --- /dev/null +++ b/.github/funding.yml @@ -0,0 +1 @@ +open_collective: js-org diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 00000000000..bf5ee46fe2c --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,43 @@ +name: Validate cnames_active.js + +on: + push: + branches: + - master + pull_request: + branches: + - master + +permissions: + contents: read + +jobs: + validate: + runs-on: ubuntu-latest + + env: + GH_EVENT_HASH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} + + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ env.GH_EVENT_HASH }} + + - uses: actions/checkout@v4 + with: + repository: js-org/js.org-cleanup + path: cleanup + + - uses: actions/setup-node@v4 + with: + node-version-file: cleanup/.nvmrc + cache: npm + cache-dependency-path: cleanup/package-lock.json + + - name: Install dependencies + run: npm ci + working-directory: cleanup + + - name: Validate cnames_active.js + run: node index.js --validate ../cnames_active.js + working-directory: cleanup diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 00000000000..477cf70660c --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,16 @@ +{ + "printWidth": 1000, + "quoteProps": "preserve", + "semi": false, + "singleQuote": false, + "tabWidth": 2, + "trailingComma": "none", + "overrides": [ + { + "files": "records_restricted.js", + "options": { + "tabWidth": 4 + } + } + ] +} diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index c57c729402c..5e06c2d8625 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -1,2 +1,17 @@ -- [x] There is reasonable content on the page (see: [No Content](https://github.com/js-org/js.org/wiki/No-Content)) -- [x] I have read and accepted the [Terms and Conditions](http://js.org/terms.html) + + +- [ ] There is reasonable content on the page (see: [No Content](https://github.com/js-org/js.org/wiki/No-Content)) +- [ ] I have read and accepted the [Terms and Conditions](http://js.org/terms.html) +- The site content can be seen at + +> The site content is ... diff --git a/README.md b/README.md index 60c5289695b..ba8835cf3ef 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,70 @@ -[![JS.ORG Logo](http://logo.js.org/png/github_header.png)](http://js.org) - [![JS.ORG](https://img.shields.io/badge/js.org-+-FFE70B.svg?style=flat-square)](http://js.org) -[![PRs](https://img.shields.io/github/issues-pr-closed-raw/js-org/js.org.svg?style=flat-square&colorB=31a88b&label=Pull%20Requests)](https://github.com/js-org/js.org/pulls?q=is%3Apr+is%3Aclosed+label%3Aadd) -[![Donate](https://img.shields.io/badge/Donate-for_registrar_fees-blue.svg?style=flat-square&logo=paypal)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RPBWBDBKW62AC) +[![PRs](https://img.shields.io/github/issues-pr-closed-raw/js-org/js.org.svg?style=flat-square&colorB=FFE70B&label=pull%20requests)](https://github.com/js-org/js.org/pulls?q=is%3Apr+is%3Aclosed+label%3Aadd) +[![Contributors](https://img.shields.io/github/contributors-anon/js-org/js.org?color=FFE70B&style=flat-square)](https://github.com/js-org/js.org/graphs/contributors) +[![Activity](https://img.shields.io/github/commit-activity/m/js-org/js.org?color=FFE70B&style=flat-square)](https://github.com/js-org/js.org/pulse/monthly) +[![Donate](https://img.shields.io/badge/Donate-for_registrar_fees-1F87FF.svg?style=flat-square&logo=open-collective&logoColor=fff)](https://opencollective.com/js-org) + +--- -**To get a short and sleek subdomain for your own GitHub Pages site follow these 4 Steps:** +## GitHub Pages + +To get a short and sleek subdomain for your own GitHub Pages site from JS.ORG follow these 4 steps: ### Step 1 -If you haven't already, now it's time to log in to your GitHub account and set up your GitHub Pages site following the instructions [here](https://pages.github.com/). To get a head start you can simply use the generator with one of the provided themes and **add some reasonable content to your new page**. + +If you haven't already, log in to your GitHub account and set up your GitHub Pages site following [their instructions](https://pages.github.com). **Make sure to add some reasonable content to your new page**. ### Step 2 -Now determine your js.org subdomain: either choose your username or the name of your repo according to the existing GitHub Pages URL (for ```http://foo.github.io/bar```, either ```foo.js.org``` or ```bar.js.org``` would be possible). More details in the [wiki](https://github.com/js-org/js.org/wiki). + +Now determine your JS.ORG subdomain: either choose your username or the name of your repository according to the existing GitHub Pages URL (for `http://foo.github.io/bar`, either `foo.js.org` or `bar.js.org` would be possible). We have more guidance on picking an appropriate subdomain in our wiki: . ### Step 3 -Add a file named ```CNAME``` to your repo (in the ```gh-pages``` branch for project pages) with a single line matching the domain you have chosen (e.g. ```foo.js.org```). If you prefer a webinterface form, have a look at [GitHub Pages Help](https://help.github.com/articles/adding-or-removing-a-custom-domain-for-your-github-pages-site/). + +If you're [publishing from a branch](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-from-a-branch): + +Add a file named `CNAME` to your repo (in the `gh-pages` branch for project pages, or the branch that you've set as your GitHub Pages source) with a single line matching the domain you have chosen (e.g. `foo.js.org`). You can also use the UI in the repository settings as discussed below, if desired. + +If you're [publishing using a workflow](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-with-a-custom-github-actions-workflow): + +A `CNAME` file will not be processed when publishing a site via a workflow, so you will need to use the UI in the repository settings to [add the custom domain](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain). Head into the repository settings and under the Pages tab add your JS.ORG subdomain as a custom domain. ### Step 4 -To finish the procedure, make a pull request in this GitHub repository that adds your subdomain to the [list](https://github.com/js-org/js.org/blob/master/cnames_active.js) of existing JS.ORG domains. Your new URL should go live within 24 hours (keep an eye on your pull request in case of a naming conflict). - -# -### Thanks -... to **[Cloudflare](https://www.cloudflare.com)** for their superb DNS service that makes this possible. While JS.ORG is using their free plan - to a shameless extent - they helped us more than once with some flexible solutions and extended quotas. Many thanks! +To finish the procedure, make a pull request in this GitHub repository that adds your subdomain to the [subdomains list](https://github.com/js-org/js.org/blob/master/cnames_active.js) of existing JS.ORG domains. Your new URL should go live within 24 hours (keep an eye on your pull request in case of a naming conflict or if there are requested changes). + +## Other Providers + +If you'd like to use JS.ORG for a website hosted elsewhere, you can do that too! + +### Step 1 + +If you haven't already, get your site set up with whatever hosting provider you desire. Note that to use JS.ORG, your hosting provider will need to support adding custom domains via a CNAME DNS record. + +### Step 2 + +Now determine your JS.ORG subdomain: either choose your username or the name of your repository according to the existing GitHub Pages URL (for `http://foo.github.io/bar`, either `foo.js.org` or `bar.js.org` would be possible). We have more guidance on picking an appropriate subdomain in our wiki: . + +### Step 3 + +Follow your hosting provider's instructions for adding a custom domain to your site, if configuration is needed. Our wiki contains a list of hosting providers we've seen folks successfully use in the past, including some notes on correctly configuring some of them: . + +### Step 4 + +As above with adding a subdomain to a GitHub Pages site, the final step is to make a pull request in this GitHub repository that adds your subdomain to the [subdomains list](https://github.com/js-org/js.org/blob/master/cnames_active.js) of existing JS.ORG domains. + +--- + +> [!IMPORTANT] +> Please be aware that there are some rules that apply to website content hosted on JS.ORG subdomains: +> +> **Websites must be *directly* related to the JavaScript ecosystem/community (such as NPM packages / JS tools, not personal pages / portfolios)** +> +> - No placeholder pages. Websites must contain substantive content relevant to their purpose. +> - No automatic redirects away from the **js.org** domain. Redirects must require user interaction. +> - No unrelated content. Websites must stay focused on their intended topic or purpose. +> +> _Additionally, please be aware of our full [Terms and Conditions](https://js.org/terms.html) for the JS.ORG service._ + +--- + +Thanks to **[Cloudflare](https://www.cloudflare.com)** for their awesome DNS service that makes this service possible. While JS.ORG is using their free plan - to a shameless extent - they helped us more than once with some flexible solutions and extended quotas. Many thanks! diff --git a/cnames_active.js b/cnames_active.js index c8b165ff876..054db65a4f1 100644 --- a/cnames_active.js +++ b/cnames_active.js @@ -14,11 +14,11 @@ * VALUE: The regular domain provided by GitHub (e.g.: "foo.github.io" for a User-/Organization Page * or "foo.github.io/bar" for a Project Page). * - * CLOUDFLARE: JS.ORG uses CloudFlare as its DNS. By default, CloudFlare proxies all requests to your subdomain + * CLOUDFLARE: JS.ORG uses Cloudflare as its DNS. By default, Cloudflare proxies all requests to your subdomain * to get SSL support (https://foo.js.org) and make use of browser caching with a TTL of 30 min. * But you can opt-out from this and make Cloudflare forward all requests directly to GitHub. - * Just add '//noCF' in the line of your requested subdomain to give us a hint. - * (all the lines marked with '//noCF?' are from a time when a requester had to explicitly opt-in; + * Just add '// noCF' in the line of your requested subdomain to give us a hint. + * (all the lines marked with '// noCF?' are from a time when a requester had to explicitly opt-in; * see: https://github.com/js-org/js.org/issues/554) * * IMPORTANT: To authorize yourself as the owner of the GitHub Page you must have added a valid CNAME file @@ -34,421 +34,727 @@ * order. Each line apart from the very last entry should have a comma after it to ensure this file * is valid syntax. * - * BECAUSE OF THE RISK OF ABUSE, I´M NOT ACCEPTING REQUESTS FOR PAGES WITHOUT REASONABLE CONTENT! + * BECAUSE OF THE RISK OF ABUSE, I'M NOT ACCEPTING REQUESTS FOR PAGES WITHOUT REASONABLE CONTENT! */ var cnames_active = { "": "js-org.github.io", + "01mz": "01mz.github.io", "100dayz": "deadcoder0904.github.io/100dayz", "101": "7anshuai.github.io/js101", // noCF? (don´t add this in a new PR) "131": "netrvin.github.io", "140513": "140513.github.io", "1c": "oknosoft.github.io/1c", + "1diaboliko84": "1diaboliko84.github.io", + "1ib": "1ib.github.io", "21cm": "21cm.github.io", "23chemistrycamp": "nchuchemistry.github.io/23chemistrycamp", "2tube": "you2php.github.io/you2php", - "3d-go": "3d-go.netlify.com", + "30dayjavascript": "30dayjavascript.netlify.app", + "360": "360daili.github.io/360daili", + "3d-go": "3d-go.netlify.app", "404": "licshee.github.io/404", "766": "766.github.io", "7anshuai": "7anshuai.github.io", // noCF? (don´t add this in a new PR) + "8085sim": "ahmedazhar05.github.io/8085sim", "98": "1j01.github.io/98", + "98plus": "cherrim98.github.io", "9932": "dannyzhan.github.io", "a-western-story": "hotsaucefiretruck.github.io/A-Western-Story", "a11yslider": "mmahandev.github.io/a11y-slider", + "a6smile": "a6smile.github.io", + "aakhilv": "aakhilv.github.io", "aalaap": "aalaap.github.io", - "abbyz": "Abbyzhoum.github.io", - "abc": "afexteam.github.io/abc-mobile", + "aaron": "57aaron.github.io", + "ab64": "un-ts.github.io/ab64", + "abbw": "abbw.github.io", + "abbyz": "abbyzhoum.github.io", + "abcdb": "hosting.gitbook.com", // noCF "abdalla": "the94air.github.io/abdalla", + "abelacostaportafolio": "asaa19971a.github.io/AbelAcostaAcostaPortafolio", "abhishek": "rpidanny.github.io/personal-collage", "abhishekmittal": "abhishek-mittal.github.io/abhishekmittal", + "abi": "abi-js.github.io", "abialbon": "abialbon.github.io", "aby": "icoldplayer.github.io/aby", + "ac": "alauda.github.io/alauda-chart", "acarsy": "acarsy.github.io", + "accent": "sripkunda.github.io/accent", "accessibility": "guilhermedelemos.github.io/accessibility", "accordion": "awps.github.io/Accordion.JS", "acebooks": "mohamed0group.github.io/acebooks", "acegroup": "mohamed0group.github.io/acegroup", "acho": "achojs.github.io/acho", + "acidmod": "acidmod.github.io", + "acm": "drew233.github.io/calander", "acme": "makepost.github.io/acme-commander", + "acta": "fabien-h.github.io/acta", "action-u": "kevinast.github.io/action-u", + "actions-creator": "ruben-arushanyan.github.io/actions-creator", "active-resource": "nicklandgrebe.github.io/activeresource.js", "acyort": "acyortjs.github.io/site", - "ada": "ada-js.netlify.com", + "ada": "ada-js.netlify.app", "adamant": "datamart.github.io/Adamant", + "adaptui": "cname.vercel-dns.com", // noCF "aderemi": "aderemi.github.io", "adil": "adilzeshan.github.io/adil", "aditya": "aditya81070.github.io", "adnanbabakan": "adnanbabakan.github.io", "adon988": "adon988.github.io", - "aemp": "afexteam.github.io/aemp", - "affiliate": "teamtofu.github.io/affiliate", + "adv": "advjs.github.io", + "advancedrpc": "advancedrpc.github.io", + "aeon": "flazepe.github.io/aeon-web", + "aerogel": "noeldemartin.github.io/aerogel", + "aesthetic": "esthetic-docs.netlify.app", + "affiliate": "russellsteadman.github.io/affiliate", + "afilters": "dmytrohoi.github.io/afilters.js", "afmsavage": "afmsavage.github.io", + "afterwind": "eedrxs.github.io/afterwind", + "agenda-tech-brasil-site": "abacatinhos.github.io/agenda-tech-brasil-site", "agentnpm": "meetping.github.io/agentnpm", "aghasemi": "aghasemi.github.io", "agilecards": "otaklapka.github.io/agilecards", + "agma": "uwynell.github.io/agma.js", "agrawalnaman": "agrawalnaman.github.io", "agrawalrohit": "rohit0803.github.io/agrawal.github.io", + "agros": "agrosjs.github.io", + "agrume": "cname.vercel-dns.com", // noCF "ahmad": "aruzikulov.github.io/ahmad", "ahmeterdgn": "ahmeterdgn.github.io", + "ahnotification": "ahmadhayyan.github.io/ahnotification.js", + "ahooks": "ahooks.surge.sh", + "ahooks-v2": "ahooks-v2.surge.sh", + "aider": "tjz101.github.io/aider-js-pages", + "air": "openwebstudio.github.io/Air-Docs", + "airesearch": "vtempest.github.io/ai-research-agent", "airtable-plus": "victorhahn.github.io/airtable-plus", "ais": "yunyoujun.github.io/ais.js", + "aitt": "aittssal.github.io/aitt", "ajaxable": "artf.github.io/ajaxable", "ajinkya": "steelx.github.io/ajinkyaxjs", "ajv": "epoberezkin.github.io/ajv", + "akala": "npenin.github.io/akala", + "akar": "mahabubx7.github.io/akar", "akase": "cedmax.github.io/akase", // noCF? (don´t add this in a new PR) "akatsuki": "akatsukijs.github.io/akatsuki", - "akshaybhalotia": "akshaybhalotia.github.io", + "akhyar": "akhyar.pages.dev", + "aksara": "sajenid.github.io/aksara.js", + "akte": "akte.netlify.app", "alasql": "alasql.github.io", // noCF? (don´t add this in a new PR) - "albertmolodec": "albertmolodec.github.io", + "alastor": "aidenybai.github.io/alastor", + "ale": "alecefe.github.io", + "alertbox": "simple-alertbox.github.io/alertbox", + "alertism": "assassinaguilar.github.io/Alertism", + "alex": "alecs297.github.io", + "alexanderalvarez": "alexanderalvarez9.github.io", "alfred": "amilajack.github.io/alfred", "algebra": "nicolewhite.github.io/algebra.js", // noCF? (don´t add this in a new PR) - "ali": "alibouhrouche.netlify.com", + "ali": "alibouhrouche.netlify.app", "ali-react-table": "alibaba.github.io/ali-react-table", "alien": "pschroen.github.io/alien.js", "aligos": "aligos.github.io", // noCF? (don´t add this in a new PR) + "alipay": "thenorthmemory.github.io/alipay.js.org", "all": "learnsomuch.github.io/all.js", // noCF? (don´t add this in a new PR) - "all-contributors": "all-contributors-js-org.netlify.com", + "all-contributors": "all-contributors-js-org.netlify.app", + "almeida": "almeidx.github.io", "almin": "almin.github.io", + "alova": "alovajs.github.io", + "alpha-coders": "biologyscience.github.io/alpha-coders", "alphabetify": "davidpomerenke.github.io/alphabetify", + "alpine-ajax": "imacrayon.github.io/alpine-ajax", "alt": "goatslacker.github.io/alt", // noCF? (don´t add this in a new PR) - "alveron": "rofrischmann.github.io/alveron", + "alveron": "cname.vercel-dns.com", // noCF "alyreza": "alyreza.github.io", "alys": "rmjordas.github.io/alys", "aman": "plug-n-play.github.io/aman", "amaple": "amjs-team.github.io/amaple", + "amaribot": "amaribot.github.io/amaribot.js", + "ambush": "ambushjs.github.io", + "amine": "am-77.github.io/amine", "amorphous": "ariabuckles.github.io/amorphous", + "ampmod": "ampm0d.github.io", + "ampn": "ampn.github.io", "amrit": "amritsrivastava.github.io", + "analytics": "analyticsjs.github.io/web-analytics", "andresito": "andresitodeguzman.github.io/andresito", "anenth": "anenth.github.io", // noCF? (don´t add this in a new PR) + "angular-cn": "ng-docs.github.io/angular-cn.js.org", "angular-jsf": "json-schema-faker.github.io/angular-jsf", // noCF? (don´t add this in a new PR) + "angular-mfe": "rx-ts.github.io/angular-mfe", + "angular-redux": "angular-redux-docs.netlify.app", // noCF "angular-uikit": "whoisjorge.github.io/angular-uikit", - "angular2in1": "angular2in1.github.io/angular2in1js", //noCF + "angular2in1": "angular2in1.github.io/angular2in1js", // noCF "angularstompdk": "davinkevin.github.io/AngularStompDK", // noCF? (don´t add this in a new PR) + "anilist": "instellate.github.io/anilist.js", "anime": "meguminsama.github.io/anime", + "animegan": "tonylianlong.github.io/AnimeGAN.js", "animo": "thrivingkings.github.io/animo", "animorph": "claudiobmgrtnr.github.io/animorph", + "ankareport": "ankareport.github.io", + "ankit": "ankit-chaubey.github.io/ankit", "anna": "anna-wro.github.io/anna", "annotate": "taitems.github.io/web-pdf-annotation", // noCF? (don´t add this in a new PR) "annoyingmouse": "annoyingmouse.github.io", // noCF? (don´t add this in a new PR) "antalya": "jsantalya.github.io", + "antdocs": "cname-china.vercel-dns.com", // noCF "antropodigital": "antropodigital.github.io/CirculodeEstudio", "antwar": "antwarjs.github.io/antwar", "anukul": "anukul.github.io", - "aoang": "aoang.github.io", - "api-spec": "api-spec.github.io", // noCF? (don´t add this in a new PR) + "aoi": "aoijs.github.io/website", + "aoimysql": "cname.vercel-dns.com", // noCF + "aoitr": "dexaroffical.github.io/aoi.js-tr", + "aom": "scarych.github.io/aom", + "aomex": "aomex.github.io", + "api.lt": "cname.vercel-dns.com", // noCF "apicluster": "ramsunvtech.github.io/apicluster", // noCF? (don´t add this in a new PR) + "apilyertia": "apilyertia.github.io", "aping": "johnnythetank.github.io/apiNG", // noCF? (don´t add this in a new PR) "aplayer": "diygod.github.io/APlayer", + "aplayer-react": "cname.vercel-dns.com", // noCF "apod": "marcosflorencio.github.io/angular-apod", // noCF? (don´t add this in a new PR) "applied": "omahajs.github.io/applied", "apprun": "yysun.github.io/apprun", - "appsocket": "appsocket.netlify.com", + "appsocket": "appsocket.netlify.app", "apr": "ramitos.github.io/apr", "aprende-react": "ptcc.github.io/aprende-react", + "aptrinh": "aptrinh.github.io", "arc": "diegohaz.github.io/arc", + "archipelago": "thephar.github.io/archipelago.js", "arcn": "alexakasanjeev.github.io/arcn", + "arctic": "pilcrowonpaper.github.io/arctic", + "arda": "ardasoyturk-portfolio.netlify.app", + "are": "cname.vercel-dns.com", // noCF + "arga": "cname.vercel-dns.com", // noCF + "argaghulamahmad": "argaghulamahmad.github.io", "argo": "albertosantini.github.io/argo", // noCF? (don´t add this in a new PR) "ari": "arbo77.github.io/ari", - "ariang": "p3terx.github.io/ariang", + "ariang": "p3terx.github.io/ariang", // noCF "arief": "1997arief.github.io", + "aries": "timoglastra.github.io/aries-credo-redirect", "arime": "ninbryan.github.io/arime", // noCF? (don´t add this in a new PR) - "artalk": "qwqcode.github.io/Artalk", + "arithmy": "arithmy.netlify.app", + "aroma": "aaveshdev.github.io/aroma.js-website", + "arshad": "arshadmhabib.github.io", + "artalk": "artalk-demo.qwqaq.com", // noCF "artery": "arteryjs.github.io/gh-pages", // noCF? (don´t add this in a new PR) "arthurmbandeira": "arthurmbandeira.github.io", + "artificial": "fabiosmuu.github.io/artificial", + "artitalk": "artitalkjs.github.io/docs", "asdivyansh": "asdivyansh.github.io", "ass": "weizhenye.github.io/ASS", "ass-editor": "jeff-tian.github.io/ass", + "assembly-line": "rubenverg.github.io/assembly-line.js", + "assistant": "coolmlgplayer-js.github.io", "ast": "kindy.github.io/ast", "astral": "espinielli.github.io/astraljs", // noCF? (don´t add this in a new PR) + "astro": "withastro.github.io", + "astro-pure": "cname.vercel-dns.com", // noCF + "astro-reactive": "astro-reactive.netlify.app", "astrobench": "kupriyanenko.github.io/astrobench", // noCF? (don´t add this in a new PR) "astx-redux-util": "kevinast.github.io/astx-redux-util", + "asuna": "asunab.github.io", "async-af": "asyncaf.github.io/AsyncAF", + "async-selector-kit": "humflelump.github.io/async-selector-kit", "atavic": "atavic.github.io", + "atenas": "atenasjs.netlify.app", + "athena": "athena-js.github.io/athena", "athome": "simon300000.github.io/athome", + "atils": "itsatelo.github.io/atils", "atombundles": "lirantal.github.io/atombundles", - "atomgit": "sawyerbx.github.io/atom-git-docs", "atomicreact": "atomicreact.github.io/AtomicReact", + "atos": "cname.vercel-dns.com", // noCF + "atx": "aktarytech.github.io/atx", "audio-stream": "guywhogeek.github.io/audio-stream", "aui": "alauda.github.io/alauda-ui", + "aunt": "79e.github.io/aunt", "autarky": "pranshuchittora.github.io/autarky", + "auth": "cname.vercel-dns.com", // noCF + "auto-immutable": "webkrafters.github.io/auto-immutable", + "auto-task-doc": "cname.vercel-dns.com", // noCF "autodocs": "bguiz.github.io/autodocs", // noCF? (don´t add this in a new PR) + "automata": "cname.vercel-dns.com", // noCF "automic": "automicjs.github.io", + "avg": "biyuehu.github.io/avgjs", "avi": "avinassh.github.io/avi", // noCF? (don´t add this in a new PR) "avner": "avnerus.github.io", // noCF? (don´t add this in a new PR) + "avo": "benjaminbhollon.github.io/avo-js", "avstream": "akash-joshi.github.io/avstream.js", + "awa": "awaproject.github.io/awaftp", + "awai": "cname.vercel-dns.com", // noCF + "awardify": "cname.vercel-dns.com", // noCF "awesome-alexa": "dolanmiu.github.io/MMM-awesome-alexa", + "awesome-javascript": "kungfu321.github.io/awesome-javascript", "awesome-nuxt": "ansidev.github.io/awesome-nuxt", "awesome-vue": "rmjordas.github.io/awesome-vue", + "awesome-web-monetization": "thomasbnt.github.io/awesome-web-monetization", "awesome-web-react": "dataformsjs.github.io/awesome-web-react", "awesomefeed": "arojunior.github.io/awesome-feed", - "awesomehub": "awesomehub.netlify.com", - "awesometech10": "awesometech10.github.io", + "awesomehub": "awesomehub.netlify.app", "awk": "42ua.github.io/awk", "awoo": "awoojs.github.io/website", - "awto": "alias.zeit.co", // noCF - "azdanov": "azdanov.netlify.com", //noCF - "aziz": "iaziz786.netlify.com", + "aws-auth": "iamarkadyt.github.io/aws-auth", + "axii": "ariesate.github.io/axii-site", + "axios-cache-interceptor": "arthurfiorette.github.io/axios-cache-interceptor", + "axios-cache-lite": "nom-nom-hub.github.io/axios-cache-lite", + "axon": "caracal7.github.io/axon.js", + "axtillar": "axtillarjs.netlify.app", + "azbuka-vkusa": "bullwinkle.github.io/azbuka-vkusa", + "aziz": "iaziz786.netlify.app", + "azlyrics-ext": "zyrouge.github.io/azlyrics-ext", + "azurapi": "azurapi.github.io/azurapi-js", "bachors": "bachors.github.io", "backlog": "backlog-js.github.io/backlog.js.org", // noCF? (don´t add this in a new PR) "backstage": "backstagejs.github.io/backstage", - "backwards-n": "backwards-n.github.io", + "backupie": "cname.vercel-dns.com", // noCF "badger": "just-glue-it.github.io/badger", // noCF? (don´t add this in a new PR) - "badlydrawnletters": "ql1ke5l98lm5wm0p.preview.edgeapp.net", - "badlymadebot": "37l9g5rwwrozyeqk.preview.edgeapp.net", + "badlee": "badlee.github.io", + "badonker": "redsplit.github.io/badonker", "badrudeen": "badrudeen.github.io", // noCF? (don´t add this in a new PR) - "bai": "abaijs.github.io", + "baicai": "zibaicai.github.io/baicaijsorg", + "bakhtiyar": "bakszero.github.io", "bali": "balijs.github.io", + "balm": "balmjs.github.io/balm.js.org", + "bananasplit": "diegoulloao.github.io/bananasplit-js", "bancho": "thepoon.github.io/bancho.js", "bandicoot": "canopytax.github.io/bandicoot.js.org", "bandung": "zufrizalyordan.github.io/bandungjs", + "bane": "kemosaf.github.io/bane", + "baoshuo": "renbaoshuo.github.io/baoshuo.css", "bara": "barajs.github.io/bara", "barba": "barbajs.github.io/barba", "barbagrigia": "barbagrigia.github.io", + "bard-ai": "evanzhoudev.github.io/bard-ai", + "base-classes": "ruben-arushanyan.github.io/base-classes", + "base62": "therootcompany.github.io/base62.js", "base64": "licshee.github.io/base64", "bash": "bashjs.github.io", - "basicgame": "basicgame.github.io/basicGame.js", // noCF? (don´t add this in a new PR) "bassdrum": "malte-wessel.github.io/bassdrum", "bastion": "snkrsnkampa.github.io/Bastion-Site", - "batch-cluster": "mceachen.github.io/batch-cluster.js", + "bathtiles": "laurenyoo.github.io/website-bathtiles.js", "battle-city": "shinima.github.io/battle-city", - "battlecry": "battlecry.pedrosm.com", "battlerite": "dragory.github.io/battlerite.js", + "bb": "bbtalkjs.github.io", "bbn": "jammer99.github.io/bbn", "bc": "mazko.github.io/bc.js", "bci": "pwstegman.github.io/bcijs", "bcklib": "zyyou.github.io/npm-modules", + "bd": "cyberghxst.github.io/bdjs-guide", "be": "davidep87.github.io/bejs.github.io", "beaga": "beagajs.github.io/beaga", - "becarefulwith": "xMikee1.github.io/becarefulwith", + "beamwind": "kenoxa.github.io/beamwind", + "beatzoid": "beatzoid.github.io", + "bedstack": "agnyz.github.io/bedstack", + "bee": "beejsdev.github.io", "begin": "advanced-webapps-class.github.io/begin", // noCF? (don´t add this in a new PR) + "belfast": "chrislaughlin.github.io/belfastjs", "benjick": "benjick.github.io", "berk": "berkelmas.github.io", "bernard": "ojengwa.github.io", "berzan": "newbytee.github.io/berzan", "besafe": "ma124.github.io/BeSafe", + "bestlist": "andrelucaas.github.io/bestlist", "bestof": "michaelrambeau.github.io/bestofjs", + "better-upload": "better-upload.pages.dev", + "bettertests": "antgonzales.github.io/bettertests.js.org", "between": "na-west1.surge.sh", "bfd": "mrsheldon.github.io/bfd.js", + "bhailang": "dullabs.github.io/bhai-lang", + "bigbrainbot": "112batman.github.io/bigbrainbot-website", + "biggames": "jacobhumston.github.io/biggames.js", + "bijou": "explosion-scratch.github.io/bijou.js", + "bilioutils": "catlair.github.io/BiliOutils", + "bin": "sujalgoel.github.io/impostor-bin", "bind-action-dispatchers": "cchamberlain.github.io/bind-action-dispatchers", // noCF? (don´t add this in a new PR) - "birb": "purpzie.github.io/birb.js.org", + "bingo": "thewilloftheshadow.github.io/bingo.js", + "bingsu": "bingsu-js.gitlab.io", + "bingus": "bingusjs.github.io", + "bionic": "1c183932-46a9-45d7-9080-4738a7d432c7.repl.co", // noCF + "birb": "birbjs.github.io/Documentation", + "biscord": "vinzerr.github.io/biscord-website", "biu": "aprilorange.github.io/biu", // noCF? (don´t add this in a new PR) - "black-fury": "black-fury.github.io", + "bkk": "rayriffy.github.io/bkk", + "blazeb2": "blazeb2.github.io", "blego": "mattstypa.github.io/blego.js.org", "blessmyrains": "dusterthefirst.github.io/blessmyrains", + "bliss": "beyondcodebootcamp.github.io/bliss", + "blizzard": "benweier.github.io/blizzard.js", "blockauth": "faragly.github.io/blockauth", - "blogzam": "zam27.github.io/blogzam", + "blog.arga": "argaghulamahmad.netlify.app", // noCF + "blog543": "saepulfariz.github.io/blog543", "blogzen": "mzaini30.github.io/blogzen", + "blooket": "redyetidev.github.io/blooket.js", "bloomer": "algusdark.github.io/bloomer", "blotter": "bradley.github.io/Blotter", + "bloxy": "visualizememe.github.io/bloxy", + "blu": "maxherrmann.github.io/blu", "blueconfig": "a-312.github.io/node-blueconfig", "blurple": "blurplejs.github.io/docs", "bo": "lfb.github.io/bojs", "boats": "discordboats.github.io", "bodybuilder": "danpaz.github.io/bodybuilder", // noCF? (don´t add this in a new PR) - "boiler": "ro0t.github.com/Boiler", + "boger": "boger.netlify.app", + "boiler": "ro0t.github.io/Boiler", "boilerplates": "ckgrafico.github.io/frontend-boilerplates", "bolao": "ziyou3012.github.io", "boldom": "marcisbee.github.io/boldom", "bombsweeper": "pakastin.github.io/bombsweeper", "bonzibuddy": "fardindadev.github.io/bonzibuddy", - "bookmarklets": "novadevelopment.github.io/bookmarklets.js", + "bookmarklet": "tamoghnak13.github.io/bookmarklet", + "bookmarklets": "zelnickb.github.io/bookmarklets", "bool": "booljs.github.io", "booru": "atlasthebot.github.io/booru", "bootstrap-confirmation": "mistic100.github.io/Bootstrap-Confirmation", // noCF? (don´t add this in a new PR) "bootstrap-validate": "pascalebeier.github.io/bootstrap-validate", - "bootstrap-vue": "bootstrap-vue.github.io", "bootstrap-vue-arsenic": "ycs77.github.io/bootstrap-vue-arsenic", + "boowindcss": "nawazishali.github.io/BoowindCSS", // noCF "bornaeon": "bornaeon.github.io", "botgram": "botgram.github.io/botgram", "bottender": "yoctol.github.io/bottender", + "bottlecap": "rwbeast.github.io/bottlecap", "boundless": "enigma-io.github.io/boundless", "box": "capacitorset.github.io/box-js", // noCF "boxed": "lionking27.github.io/boxed", "brain": "brainjs.github.io/brain.js.org", + "brandi": "cname.vercel-dns.com", // noCF "brandifyjs": "greybax.github.io/brandifyjs", "brandonmerritt": "brandonmerritt.github.io", // noCF? (don´t add this in a new PR) "brasil": "javascriptbrasil.github.io", + "brawley": "brawlie.github.io/brawley", + "brawlstats": "brawlstatsjs.netlify.app", + "brazil": "braziljs.github.io/2025-conf", + "breadbot": "centralomd.github.io/breadbot", + "brick-next": "easyops-cn.github.io/brick-next", "bricklayer": "ademilter.github.io/bricklayer", // noCF? (don´t add this in a new PR) + "bricks": "easyops-cn.github.io/bricks", + "bridge": "mystpi.github.io/bridge", + "bright": "bright-js.github.io", + "brigsby": "tynatsuhara.github.io/brigsby", + "brizusan": "blackmyab.github.io/brizusan", "brotat": "mariobob.github.io/brotat-website", - "browserless": "kikobeats.github.io/browserless", - "brum": "brumjs.github.io", // noCF? (don´t add this in a new PR) + "browserless": "microlinkhq.github.io/browserless", + "brum": "romantic-noyce-67d6ee.netlify.app", + "bs": "cname.vercel-dns.com", // noCF "bt": "mldonkey.github.io/bt", - "btgprice": "beeyev.github.io/btgprice.org", + "bud": "roots-bud.netlify.app", "bui": "kjantzer.github.io/bui", + "builders": "cname.vercel-dns.com", // noCF + "bullwinkle": "bullwinkle.github.io", "bun": "the94air.github.io/bun", - "bunjil": "bunjil.netlify.com", + "bundle": "cname.vercel-dns.com", // noCF + "bunicorn": "ragokan.github.io/bunicorn", + "bunjil": "bunjil.netlify.app", "bunyan-fork": "cchamberlain.github.io/bunyan-fork", // noCF? (don´t add this in a new PR) "bunyan-pmx": "cchamberlain.github.io/bunyan-pmx", // noCF? (don´t add this in a new PR) "bunyan-serializer": "cchamberlain.github.io/bunyan-serializer", // noCF? (don´t add this in a new PR) "burst": "hugeen.github.io/burst", // noCF? (don´t add this in a new PR) "bustime": "agarzola.github.io/bustime", // noCF? (don´t add this in a new PR) - "buttermilk": "buttermilk.netlify.com", + "butterfly": "cname.vercel-dns.com", // noCF + "buttermilk": "buttermilk.netlify.app", + "buymeacoffee": "warengonzaga.github.io/buymeacoffee.js", + "bwb": "shbwb.github.io/bwb", + "bwb-docs": "shbwb.github.io/bwb-docs", + "byakugan": "rockmanvnx6.github.io/byakugan-js", + "bynote": "bynotes.github.io", + "byteasier": "kagurain.github.io/ByteasierIndex", + "byteforge": "piscilus.github.io/byteforge", + "byteform": "byteform.netlify.app", + "bytemd": "bytemd.netlify.app", "c": "cocobear.github.io", "c-3po": "ttag-org.github.io/c-3po", + "c-installer": "llenax.github.io/c-installer", + "c1200": "c1200.github.io", "cable": "whatgoodisaroad.github.io/cablejs", // noCF? (don´t add this in a new PR) - "cac": "cac.netlify.com", + "cachi": "eddiejibson.github.io/cachi", + "cacophony": "ctoth.github.io/cacophony", "caffeine": "ccrraaiigg.github.io/caffeine", "cagatay": "cagataycali.github.io", - "cake-boss": "dannytatom.github.io/cake-boss", + "caissa": "agentx-cgn.github.io/caissa", + "caizhiyuannn": "caizhiyuannn.github.io", + "calcium": "courageous-bublanina-6857c1.netlify.app", "calcy": "odevlord.github.io/Calcy", // noCF? (don´t add this in a new PR) "calendarios": "helpdev.github.io/Calendarios", // noCF? (don´t add this in a new PR) + "caliph-api": "caliphdev.github.io/caliph-api", + "calisto": "cname.vercel-dns.com", // noCF + "camelcase": "ultirequiem.github.io/camelcase", + "campfire": "xyzshantaram.github.io/campfire", "candy": "candy02058912.github.io/portfolio", "candyland": "candyland-js.github.io/candyland", - "candyref": "bbyjins.github.io/candy", "cans": "djyde.github.io/cans", // noCF "cantara": "cantarajs.github.io/cantara", + "canvabase": "mezotv.github.io/canvabase", + "canvacord": "canvacord.netlify.app", "canvas": "anshuman-verma.github.io/canvas", - "canvasconstructor": "kyranet.github.io/canvas-constructor-website", + "canvas-datagrid": "tonygermaneri.github.io/canvas-datagrid", + "canvasconstructor": "kyranet.github.io/canvas-constructor", + "canvasui": "canvasui.github.io/docs", + "canvg": "canvg.github.io/canvg", "canvo": "canvojs.github.io", - "caizhiyuannn": "caizhiyuannn.github.io", + "cap": "cap-js.github.io/docs", "capital": "capitaljs.github.io/capitaljs", + "capjs": "tiagorangel1.github.io/cap", "capsid": "capsidjs.github.io/capsid", "capsule": "capsule-js-org.github.io/capsule", + "captcha-canvas": "shashank3736.github.io/captcha-canvas", + "car": "pakastin.github.io/car", + "carakan": "masnormen.github.io/carakanjs", "cardtabs": "blekerfeld.github.io/CardTabs", "cargo": "herber.github.io/cargo", "carloseduardo": "karllossouza.github.io/carloseduardo.js.org", "carmi": "wix-incubator.github.io/carmi", + "carrier": "theritikchoure.github.io/carrierjs", + "carrot": "kemosaf.github.io/carrot", + "cart": "cname.vercel-dns.com", // noCF "cartodb-demo": "opensas.github.io/cartodb-demo", // noCF? (don´t add this in a new PR) + "casl": "stalniy.github.io/casl", "cassie": "milesgitgud.github.io/cassie", "catbox": "samsamson33.github.io/catbox.js", + "cath": "cath-docs.pages.dev", // noCF + "catisol": "catisol-ui.netlify.app", "cats": "whoisjorge.github.io/not-cat-gifs", - "cbm": "iamnapo.github.io/cbmjs", + "cbm": "cbmjs.github.io/cbm-website", + "cdc-bot": "cdc-bot-js-npm.github.io/website", + "cdi": "kiprox.github.io/Candro-Drive-Index", "cdll": "cdll.github.io", - "cebu": "javascriptcebu.netlify.com", + "cdoor": "cdoor.github.io", + "cebu": "javascriptcebu.netlify.app", + "cekdomain": "cekdomain.netlify.app", "celery-node": "actumn.github.io/celery.node", + "cenap": "cenapyuce.github.io", "cennznet": "cennznet.github.io/cennznet-ui", "ceruttimaicon": "ceruttimaicon.github.io", "cesaralvarez": "cesaralvrz.github.io/cesaralvarez", - "cezanne": "hackdoor-io.github.io/cezanne", + "ceyhun": "ceyhunmelek.github.io/ceyhun", + "cgoatone": "cgoatone.github.io", "chain-able": "fluents.github.io/chain-able-site", + "chainson": "abcdan.github.io/chainson", "chandzhang": "chandzhang.github.io", - "charge": "charge-js.netlify.com", - "chartconstructor": "quarksworks.github.io/chartConstructor", + "charge": "charge-js.netlify.app", + "chariot": "riyacchi.github.io/chariot.js", "chatexchange": "jacob-gray.github.io/ChatExchangeJS", + "chatgpt": "chatgptjs.github.io/chatgpt.js", "checkers": "davidpomerenke.github.io/checkers", "cheerio": "cheeriojs.github.io/cheerio", + "chenkun": "ck123-rgb.github.io/chenkun-js-org", "chenyuhu": "chenyuhu.github.io", "chernivtsi": "chernivtsijs.github.io", "chig": "eliotchignell.github.io", - "chimon2000": "chimon2000.github.io", // noCF? (don´t add this in a new PR) "chirashi": "chirashijs.github.io/chirashi", + "chitchat": "chitchatjs.github.io", + "choo": "choo-js.github.io", "chordthing": "ifons42.github.io/chordthing", - "chr1stmas": "diegomagdaIeno.github.io/Chr1stmas", "chris": "christopher-hayes.github.io/chris", "chrismendis": "chrismendis.github.io", // noCF? (don´t add this in a new PR) "christo": "christoga.github.io/js-org", // noCF? (don´t add this in a new PR) "christopher": "marekkobida.github.io/christopher", "chronos": "espinielli.github.io/chronos", // noCF? (don´t add this in a new PR) - "cineasta": "cineasta-js.github.io/cineasta-docs", - "ciphercrack": "avirut.github.io/ciphercrack", + "chronosis": "jack-weilage.github.io/chronosis", "citation": "citation-js.github.io/site", + "cite": "citecount.netlify.app", "citeapa": "natsuozawa.github.io/citeapa", "city": "city.github.io", "civet": "civet-org.github.io", "cjss": "cjss-group.github.io/CJSS", - "ckkibet": "ckkibet.github.io" + "ck": "chunkeat99.github.io/ck.js.org", + "ckkibet": "ckkibet.github.io", "clabe-validator": "center-key.github.io/clabe-validator", "clark": "clarkdo.github.io/new-blog", "clarkdo": "clarkdo.github.io", + "clash": "powerbox1000.github.io/clash", + "clashofclans": "clashperk.github.io/clashofclans.js", + "classic": "joeleeofficial.github.io/Classic", + "classroom": "epoxydevelopment.github.io/Classroom", "clause": "clausejs.github.io/clausejs", + "cleaners": "swansontec.github.io/cleaners", "clearlyelevated": "clearlyelevated.github.io", + "clerc": "apex-loadbalancer.netlify.app", "clevercord": "theanidox.github.io/Clevercord", + "clickforhelp": "clickforhelp.netlify.app", + "clickhouse": "depyronick.github.io/clickhouse-client", + "clientworker": "chenyfan.github.io/ClientWorker", + "clock": "mirmousaviii.github.io/clock", "clockwork": "clockworkdev.github.io/ClockworkWebsite", + "cluster-eventdispatcher": "chickendevlab.github.io/cluster-eventdispatcher", "clusterize": "nexts.github.io/Clusterize.js", "cmbhackjs2013": "cmbjs.github.io/cmbHackjs2013", "cmdhub": "thatonetqnk.github.io/cmdhub", "cml": "didi.github.io/chameleon", - "cn.iflow": "unadlib.github.io/iflow-docs-cn", + "cn.history": "doodlewind.github.io/jshistory-cn", // noCF + "cn.iflow": "unadlib.github.io/iflow-docs-cn", // noCF "cn.mobx": "sangka.github.io/mobx-docs-cn", // noCF - "cn.redux": "camsong.github.io/redux-in-chinese", // noCF? (don´t add this in a new PR) + "cn.react-redux": "nefe.github.io/react-redux-cn", // noCF + "cn.redux": "nefe.github.io/redux-in-chinese", // noCF + "cn.redux-toolkit": "nefe.github.io/redux-toolkit-cn", // noCF "cn.rx": "rxjs-cn.github.io/RxJS-Docs-CN", // noCF "cnc": "cncjs.github.io/cncjs.org", "cndrew": "codemaster233.github.io", + "cobalt-kit": "bernzrdo.github.io/cobalt-kit", + "cocy": "krmax44.github.io/cocy", + "code-tour": "code-tour.netlify.app", "codebooky": "hiteshsubnani0128.github.io/codebooky", + "codekori": "cname.vercel-dns.com", // noCF, "codemade": "codemade.github.io", // noCF? (don´t add this in a new PR) + "codemirror-languageservice": "codemirror-languageservice.netlify.app", "codepan": "egoist.github.io/codepan", - "codesurfer": "code-surfer.netlify.com", // noCF + "codeshare": "cname.vercel-dns.com", // noCF + "codewing": "nicesapien.github.io/codewing", "codinsky": "izhaki.github.io/codinsky", "coffea": "caffeinery.github.io/coffea", "coir": "channg.github.io/coir", - "collect": "collectjs.netlify.com", - "collegequest": "schoolhouserock.github.io/CollegeQuest", // noCF? (don´t add this in a new PR) + "coldemo": "coldemo.github.io", + "collect": "collectjs.netlify.app", "colombo": "cmbjs.github.io/CMBJS", "color": "akash-joshi.github.io/neural-color-picker", - "colorise": "mayuraitavadekar.github.io/colorise", + "coloris": "mdbassit.github.io/Coloris", "colorlab": "signalwerk.github.io/colorlab", "colors": "xv700.github.io/colors", + "colors-web": "yu-tou.github.io/colors-web", + "colorsea": "waterbeside.github.io/colorsea", + "colortap": "fivefifteen.github.io/colortap", + "colorwind": "siguici.github.io/colorwind", + "comfortable": "ruben-arushanyan.github.io/comfortable", "comixngn": "seun40.github.io/comix-ngn", // noCF? (don´t add this in a new PR) + "command": "satoqz.github.io/command.ts", + "commandcord": "commandcord.github.io", "commandfox": "commandfox.github.io/mc-tools", // noCF? (don´t add this in a new PR) + "commandkit": "commandkit.netlify.app", "commitlint": "conventional-changelog.github.io/commitlint", + "common-utils": "common-utils.netlify.app", "common-utils-pkg": "iamdevlinph.github.io/common-utils-pkg", - "community.os": "js.bydiscourse.com", // noCF? (don´t add this in a new PR) - "concurrent-tasks": "hosting.gitbook.com", + "composedb": "ceramicstudio.github.io/js-composedb", + "compoundinterest": "nategiraudeau.github.io/compound-interest-calculator", + "computed": "krmax44.github.io/rollup-plugin-computed", + "concurrent-tasks": "samrith-s.github.io/concurrent-tasks", "concursos": "mteyss.github.io/concursos", // noCF? (don´t add this in a new PR) "conductor": "hosting.gitbook.com", + "confetti": "tsparticles.github.io/confetti", + "conflict": "conflictjs.github.io/site", "conglo": "schwarzkopfb.github.io/conglo", + "connect.stacks": "cname.vercel-dns.com", // noCF "consent": "datamart.github.io/Consent", "consono": "r37r0m0d3l.github.io/consono", "construyendotrabajo": "mteyss.github.io/construyendotrabajo", // noCF? (don´t add this in a new PR) "consultant": "jense5.github.io/consultant", + "contex": "donnellan0007.github.io/ContextJS", + "context": "theinternetfolks.github.io/context", "contextify": "abemedia.github.io/jquery-contextify", // noCF? (don´t add this in a new PR) - "cookiebox": "metaa.gitlab.io/cookiebox.js", + "convert": "convertjs.netlify.app", + "cookiebox": "metaa.gitlab.io", "cookiecord": "cookiecord.github.io/cookiecord", + "cookieguard": "tobiasthaden.github.io/cookieguard", + "cookienotice": "cookienotice.github.io", + "cool-img-api": "sujalgoel.github.io/cool-image-api-wrapper", + "cool-sw": "tharunoptimus.github.io/cool-sw", + "coolapkwiki": "coolapk-fan.github.io/wiki", + "cooler": "cooler-docs.netlify.app", // noCF + "coolnavs": "prabincankod.github.io/cool-navs", "coord": "itsacorn.github.io/jscoord", "copyer": "tsycode.github.io/copyer.js", "copywriting-correct": "rikakomoe.github.io/copywriting-correct", - "cordclient": "cordclient.github.io/stable", + "cord": "lukadev-0.github.io/cord.js", + "cordis": "cordis-lib.github.io", + "cordlang": "cname.vercel-dns.com", // noCF "cordova-multiplatform-template": "ckgrafico.github.io/Cordova-Multiplatform-Template", // noCF? (don´t add this in a new PR) + "core-ln": "runcitadel.github.io/core-ln.ts", "coreact": "coreactjs.github.io/coreact", + "coredi": "empla.github.io/coredi", + "coreutils": "ultirequiem.github.io/coreutils", "cork": "davej.github.io/CorkJS", "corki": "dvtate.github.io/corki", + "corona": "soroushchehresa.github.io/awesome-coronavirus", "corps": "copay.github.io", + "corx": "corx.kazult.repl.co", // noCF + "cosmicord": "cname.vercel-dns.com", // noCF + "cosmos": "cosmos-xyz.github.io/cosmos", "cosova": "hardo.github.io/cosova", + "costro": "costrojs.github.io", "cote": "dashersw.github.io/cote", // noCF? (don´t add this in a new PR) - "countr": "gleeny.github.io/countr-redirect", + "cotton": "cottonjs.netlify.app", "country": "growmies.github.io/countryjs", // noCF? (don´t add this in a new PR) + "cov19": "mixon00.github.io/cov19-cli", "cp": "nestedobjects.github.io/cp", "cplayer": "copay.github.io/cPlayer", + "cpp": "bugra9.github.io/cpp.js", "cppkies": "cppkies-team.github.io/Cppkies", "cq-websocket": "momocow.github.io/node-cq-websocket", "cqrs": "adrai.github.io/cqrs", // noCF? (don´t add this in a new PR) "cr": "echosoar.github.io/cr", + "crackabottle": "crack-a-bottle.github.io", "cracked": "billorcutt.github.io/Cracked", - "craft": "prevwong.github.io/craft.js", + "craco": "dilanx.github.io/craco", + "craft": "cname.vercel-dns.com", // noCF "crank": "bikeshaving.github.io/crank", - "crawlx": "wooddance.github.io/crawlx", + "crapto1": "li0ard.github.io/crapto1_ts", + "crawlx": "wind2sing.github.io/crawlx", + "crawlyx": "theritikchoure.github.io/crawlyx", + "creamcrop": "creamcropdev.github.io", + "create-coffee-app": "legolovergo.github.io/create-coffee-app", + "create-djs-app": "cname.vercel-dns.com", // noCF + "create-next-app": "create-next-app.github.io", "create-project": "chalarangelo.github.io/create-js-project", "createrest": "atomixinteractions.github.io/createrest", "creaturegen": "ryancromebook.github.io/creaturegen", + "credo": "openwallet-foundation.github.io/credo-ts-docs", + "crls": "lukecarr.github.io/crls", + "crossani": "cname.vercel-dns.com", // noCF + "crossbell": "crossbell-box.github.io/crossbell.js", "crunch": "vukicevic.github.io/crunch", // noCF? (don´t add this in a new PR) - "cryptokey": "rumkin.github.com/crypto-key", + "cryptokey": "rumkin.github.io/crypto-key", + "cryptons-api": "agenthackeryt.github.io/cryptons-api", + "crystaldb": "erikmcm.github.io/CrystalDB", + "crystalpay-sdk": "deadshumz.github.io/crystalpay-sdk", + "css-variable": "jantimon.github.io/css-variable", + "cssfun": "8tentaculos.github.io/cssfun", + "cssx": "salteadorneo.github.io/cssx", + "csur": "cname.vercel-dns.com", // noCF "csv": "adaltas.github.io/node-csv-docs", + "csv-rex": "willfarrell.github.io/csv-rex", + "cubing": "the-silver-project.github.io/cubing", "cucumber-mink": "adezandee.github.io/cucumber-mink", // noCF? (don´t add this in a new PR) + "cungudafa": "cungudafa.github.io", + "curd": "yourtion.github.io/SimpleCURD", "curi": "pshrmn.github.io/curi", "currency": "scurker.github.io/currency.js", + "currency-system": "bintelligent.github.io/currency-system", "curseapp": "mcrocks999.github.io/curseapp.js", - "customrpc": "realalexsss.github.io/CustomRPC", - "cville": "CVjs.github.io", + "custard": "custard-pkg.github.io", + "custom-captcha": "mcnagynorbi.github.io/custom-captcha", + "cville": "cvjs.github.io", + "cvss": "cvssjs.github.io", + "cy-rn": "tyrone2333.github.io/cy-react-native-cli", "cyberflame": "cyberflameu.github.io", "cybernaut": "clebert.github.io/cybernaut", "cycle": "cyclejs.github.io", "cyclow": "pmros.github.io/cyclow", // noCF "cyliim": "cyliim.github.io", - "cyris": "iCyris.github.io", + "cyrena": "cyrenajs.github.io/cyrena", + "cyris": "icyris.github.io", + "d-patterns": "alias.zeit.co", // noCF "d4": "joelburget.github.io/d4", - "daily.tmr": "ttttmr.github.io/daily", // noCF + "daily.tmr": "tmr-daily.netlify.app", // noCF + "daisy": "warengonzaga.github.io/daisy.js", + "dakokonutboi": "dakokonutboi.github.io/portfolio", + "daksh0225": "daksh0225.github.io", "damo": "damodharanj.github.io", - "dan": "danielh-dev.netlify.com", + "damon233": "whatdamon.github.io", + "dan": "danielh-dev.netlify.app", + "daniel": "dans24.github.io", "danmaku": "weizhenye.github.io/Danmaku", "danmol": "dan12mol.github.io", // noCF? (don´t add this in a new PR) "dap": "jooher.github.io/dap", "dapit": "dafitrah.github.io", + "darkroom": "ajzat34.github.io/darkroom", "darshit": "dgupta777.github.io", - "data-dashboard": "dnajs.github.io/data-dashboard", + "data-dashboard": "dna-engine.github.io/data-dashboard", "data-migration": "thebenforce.github.io/data-migration", "dataclass": "alexeyraspopov.github.io/dataclass", + "datacord": "d60a9765-dcf7-45e0-ac27-2280a8aff26f.id.repl.co", // noCF + "dataenv": "pgamerx.github.io/dataenv", + "dataflux": "massimocandela.github.io/dataflux", + "datastream": "willfarrell.github.io/datastream", "datastructures": "deadcoder0904.github.io/datastructures", "date": "matthewmueller.github.io/date", // noCF? (don´t add this in a new PR) + "datenel": "astrian.github.io/datenel-doc", + "dativejs": "dativejs.github.io", "davet": "egecelikci.github.io/davet", "dawn": "dawnelixir.github.io/dawn.js.org", "dawood": "mohamedawood.github.io/Dawood", @@ -457,565 +763,994 @@ var cnames_active = { "daysfromnow": "pedrokost.github.io/daysfromnow", // noCF? (don´t add this in a new PR) "dbar": "dbarjs.github.io", "dbash": "oocydo.github.io/dbash", - "dblog": "dblog.netlify.com", + "dbd": "dbdjs.github.io/website", "dbo": "z3ta.github.io/dbo", // noCF? (don´t add this in a new PR) "dbothook": "dbots-pkg.github.io/dbothook-website", - "dbots": "dbots-pkg.github.io", + "dbots": "dbots-pkg.github.io/dbots-website", + "dbotsgg": "valredstone.github.io/dbots.gg", + "dbwrite": "sithu-khant.github.io/dbwrite", + "ddnet": "sans3108.github.io/DDNet", + "decimalsystem": "uellenberg.github.io/DecimalSystem", "deck-of-cards": "pakastin.github.io/deck-of-cards", "declarativ": "fennifith.github.io/declarativ", // noCF - "deepfractal": "munrocket.github.io/deep-fractal", + "deep-mandelbrot": "munsocket.github.io/deep-mandelbrot", + "deepcodes": "deepduggal.github.io/deepcodes", + "deepintr": "deepintr.github.io", + "deepkit-graphql": "cname.vercel-dns.com", // noCF "deepu": "deepu105.github.io", "defi": "finom.github.io/defi.js.org", "delegacias-fortaleza": "juliosampaio.github.io/delegacias-fortaleza", // noCF? (don´t add this in a new PR) "delet": "ds-development.github.io/delet", + "demo.linksharer": "linksharer.github.io/LinkSharer", // noCF + "demo.upptime": "upptime.github.io/upptime", // noCF "democracy": "invisible-college.github.io/democracy", - "demoji": "chroventer.github.io/demoji", + "denalon": "denalon.github.io", + "denepo": "denepo.github.io", "denisvieira": "denisvieira05.github.io", - "deox": "deox.netlify.com", + "deno-algorithm": "hylerrix.github.io/deno-algorithm", + "deno-tutorial": "hylerrix.github.io/deno-tutorial", + "deox": "deox.netlify.app", + "deportes": "andreapins.github.io/Deportes-Gacetis", "deputy": "ry4nolson.github.io/Deputy", // noCF? (don´t add this in a new PR) - "deskn": "dk83l5qmqg6z7q9m.shw.io", + "des-docs": "shadowplay1.github.io/des-docs", + "designdevresources": "designdevresource.netlify.app", + "detalk": "detalkjs.netlify.app", // noCF "detect-resize": "noderaider.github.io/detect-resize", // noCF? (don´t add this in a new PR) "detector": "blackmirror1980.github.io/detector-js", "deterministic": "nodeguy.github.io/Deterministic.js", + "dev-panel": "involve-digital.github.io/dev-panel", + "dev-sandbox": "iam-medvedev.github.io/dev-sandbox", + "developerfolio": "saadpasta.github.io/developerFolio", + "devfolio": "anilseervi.github.io/DevFolio", + "device": "vpodk.github.io/device", + "devlunch": "superzackx.github.io/DevLunch", "devsession": "lukasbach.github.io/devsession", "dgelong": "alexeyraspopov.github.io/dgelong", // noCF? (don´t add this in a new PR) + "dgs-docs": "shadowplay1.github.io/discord-giveaways-super", "dhimasanb": "dhimasanb.github.io", "dhruvdutt": "dhruvdutt.github.io", + "diabolo": "cname.vercel-dns.com", // noCF "diamond": "diamondpkg.github.io/website", - "dice": "dicediscord.netlify.com", + "dice": "dicediscord.netlify.app", + "dicey": "basicer.github.io/dicey", + "dictionary": "dictionary-api-docs.gamercoder215.repl.co", // noCF + "did": "ceramicnetwork.github.io/js-did", + "diddle": "jylescoad-ward.github.io/diddle.js", "diffract": "ameyms.github.io/diffract", // noCF? (don´t add this in a new PR) + "dime": "anut-py.github.io/dime", "dinesh": "dineshondev.github.io/dinesh", // noCF? (don´t add this in a new PR) "dinos": "0xflotus.github.io/dinos", - "discord": "discordjs.github.io/website", + "dinosaur": "path08.github.io/Dinosaur", + "dipole": "zheksoon.github.io/dipole", + "discm": "cname.vercel-dns.com", // noCF + "discmds": "whitecluegaming.github.io/discmds", + "discord": "cname.vercel-dns.com", // noCF + "discord-achievements": "shadowplay1.github.io/da-docs", + "discord-addons": "freiikdev.github.io/discord-addons", "discord-anti-spam": "michael-j-scofield.github.io/discord-anti-spam", + "discord-bio": "asdfugil.github.io/discord.bio", + "discord-botlists": "sidisliveyt.github.io/discord-botlists", + "discord-button-page": "kingofpanda-development.github.io/discord-button-page", + "discord-cmds": "hosting.gitbook.io", // noCF + "discord-components": "skyra-project.github.io/discord-components", + "discord-console-logger": "lucaslah.github.io/discord-console-logger", + "discord-easy-leveling": "retrouser955.github.io/discord-easy-leveling", + "discord-easy-slash": "amukh1.github.io/discord-easy-slash", + "discord-epagination": "azawat7.github.io/discord-pagination", + "discord-gamecord": "cname.vercel-dns.com", // noCF "discord-giveaways": "androz2091.github.io/discord-giveaways", + "discord-kommando": "team-thinkcord.github.io/discord-kommando.js", + "discord-kommando-plugins": "team-thinkcord.github.io/discord-kommando.js-plugins", "discord-kr": "discordjs-kr.github.io/website", "discord-logs": "androz2091.github.io/discord-logs", - "discord-player": "androz2091.github.io/discord-player", + "discord-messages": "lebyy.github.io/discord-messages", + "discord-mini-games": "tanvishgg.github.io/Discord-Mini-Games.js", + "discord-moderator": "xyligan-gp.github.io/discord-moderator", + "discord-music-player": "sushibtw.github.io/discord-music-player", + "discord-player": "cname.vercel-dns.com", // noCF + "discord-portable-player": "lolollllo.github.io/discord-portable-player", + "discord-rankup": "x404dev.github.io/discord-rankup", + "discord-rest": "garder500.github.io/discord-rest", "discord-sensei": "demonicious.github.io/discord-sensei", + "discord-tickets": "derpinou.github.io/discord-tickets-docs", + "discord-twitch": "tovade.github.io/discord-twitch", + "discord-voice": "discord-voice.netlify.app", + "discord-vr": "hosting.gitbook.io", // noCF "discord4node": "mrsheldon.github.io/Discord4Node", + "discordeno": "discordeno.github.io/discordeno", + "discordhy": "readthedocs.io", + "discordjs-mvc": "3h04m1.github.io/discord.js-mvc", + "discordkit": "swothh.github.io/discordkit", "discordlib": "hosting.gitbook.com", - "discordutil": "chroventer.github.io/discordutil", + "discords": "botstudios.github.io/discords.js.org", "discordutility": "chaosphoe.github.io/discordutility", - "discunit": "megacode18.github.io/discunit.js", - "dislink": "relms12345.github.io/Dislink", + "discordx": "discordx-ts.github.io/discordx", + "discuss": "cname.vercel-dns.com", // noCF + "disgroupdev": "disgroup-development.github.io/disgroupdev.js", + "disgrow": "sinkaroid.github.io/disgrow", + "dismord": "dismord.github.io/website", "display": "arguiot.github.io/DisplayJS", "distillery": "achannarasappa.github.io/distillery", // noCF? (don´t add this in a new PR) "distri": "flarp.github.io/Distri.js", "distribution": "distributionjs.github.io/website", + "districode": "districode.netlify.app", + "districode-p2p": "districode-p2p.netlify.app", + "distube": "distubejs.github.io", + "diswrap": "023eb747b8-hosting.gitbook.io", + "ditox": "mnasyrov.github.io/ditox", "div": "div-js.github.io/div.js.org", + "divifier": "eaaasun.github.io/divifier", + "diya": "diya-8ra.pages.dev", // noCF + "djs-addon": "hosting.gitbook.io", // noCF + "djs-application-commands": "hosting.gitbook.io", + "djs-tickets": "pgamerx.github.io/djs-tickets", + "djs-tools": "fhgdev.github.io/djs-tools", + "djsframe": "vypal.github.io/djsframe", "djsguide": "hosting.gitbook.com", + "djskit": "rtxeon.github.io/djskit", "djvu": "russcoder.github.io/djvujs", // noCF "djzhao": "djzhao627.github.io", + "dlite": "hosting.gitbook.com", + "dls-docs": "shadowplay1.github.io/dls-docs", "dmitry": "dmitry-zaets.github.io", - "dna": "dnajs.github.io/dna.js", - "dns": "js-org.github.io/dns.js.org", - "docile": "teamtofu.github.io/docile", + "dna": "dna-engine.github.io/dna-engine", + "doars": "doars.github.io/doars", + "docile": "russellsteadman.github.io/docile", + "docs.astro-reactive": "astro-reactive-docs.netlify.app", // noCF + "docs.guildedts": "guildedts.github.io/docs", // noCF "docs.light": "hosting.gitbook.com", // noCF + "docs.modmail": "botstudios.github.io/modmail.js-docs", // noCF + "docs.mosaic": "hosting.gitbook.io", // noCF + "docs.uaparser": "faisalman.github.io/ua-parser-js-docs", // noCF "docsify": "docsifyjs.github.io/docsify", "docsify-es": "sidval.github.io/docsify-es", "docsify-ru": "truepatch.github.io/docsify-ru", "docsite": "txd-team.github.io/docsite-doc-v1", + "document-scanner": "websitebeaver.github.io/capacitor-document-scanner", "documentation": "documentationjs.github.io", // noCF? (don´t add this in a new PR) "docx": "dolanmiu.github.io/docx", "dodec-design": "dodec-design.github.io", - "doggie": "rd73mzg8wwe59yq0.preview.edgeapp.net", - "dogstack": "dogstack.gitbooks.io/handbook", // noCF + "dogehq": "dogehq.github.io/dogehq", + "dogstack": "dogstack.gitbooks.io", // noCF + "doja": "cname.vercel-dns.com", // noCF + "dokdo": "wonderlandpark.github.io/dokdo", + "dolan": "cname.vercel-dns.com", // noCF "dollar": "defims.github.io/dollar", "dolphin": "uyouthe.github.io/dolphin", + "domainr": "cname.vercel-dns.com", // noCF + "domhandler": "fb55.github.io/domhandler", "dominion": "dominion-framework.github.io", - "domtastic": "webpro.github.io/DOMtastic", + "domiso": "un-ts.github.io/domiso", + "domutils": "fb55.github.io/domutils", + "domx": "linttrapmedia.github.io/domx", + "domxy": "domxy.github.io/domxy", "donavon": "donavon.github.io", // noCF? (don´t add this in a new PR) + "donut": "665c97b7-c1b8-473c-b6b8-48006bfae344.repl.co", // noCF "dope": "fouad.github.io/dope", // noCF? (don´t add this in a new PR) - "dora": "dorakit.github.io/dora.js.org", "dot-microservices": "dot-microservices.github.io/dot", - "dougg0k": "dougg0k.github.io", "doz": "dozjs.github.io/website", "dplayer": "diygod.github.io/DPlayer", // noCF + "dpm": "xyligan-gp.github.io/discord-player-music", "dprof": "andreasmadsen.github.io/dprof", - "draft": "D1SC0tech.github.io/draft.js", // noCF? (don´t add this in a new PR) + "draft": "d1sc0tech.github.io/draft.js", // noCF? (don´t add this in a new PR) "drag": "classicoldsong.github.io/Drag.js", // noCF? (don´t add this in a new PR) "dragio": "alexkratky.github.io/Dragio.js", + "drago": "samolo-h3ll0.github.io/dragojs", + "dragonizedpizza": "dragonizedpizza.github.io/ImageEditor", "dragonman225": "dragonman225.github.io", "draw": "skillzzjesse.github.io/draw", + "drawie": "cname.vercel-dns.com", // noCF + "dream": "joeleeofficial.github.io/dream", + "dreamcord": "dreamcordjs.github.io/dreamcord", + "dreamland": "mercuryworkshop.github.io/dreamland-website", + "dreamlo": "jmheartley.github.io/dreamlo.js", "dreygur": "dreygur.github.io", - "drome": "dromejs.github.io/drome.js.org", + "drop": "dt-is-not-available.github.io/drop", + "drr": "xyligan-gp.github.io/discord-reactions-roles", "drupi": "drupijs.github.io/website", - "dtdevs": "daantje1.github.io" + "dthings": "hosting.gitbook.io", // noCF "dtools": "mrsheldon.github.io/dtools.js", + "dtune": "rotekoppen.github.io/dtune", "du": "ruanyl.github.io/du", // noCF? (don´t add this in a new PR) "dualcyclone": "dualcyclone.github.io/postit-todo-react-redux", + "duck-duck-scrape": "snazzah.github.io/duck-duck-scrape", + "duckfficer": "devtin.github.io/duckfficer", + "duco": "axorax.github.io/duco.js", + "dum": "castmary.github.io/dum.js.org", "dumber": "dumberjs.github.io", + "dumi-theme-tuya": "youngjuning.github.io/dumi-theme-tuya", "dunedin": "dunedinjs.github.io", "dungeon": "youssefelshemi.github.io/dungeon.js", - "duniter": "duniterspec.github.io", - "dvan": "dvan.netlify.com", + "duosoptimos": "duosoptimos.github.io/duosptimos", + "duration": "imranbarbhuiya.github.io/duration", + "dv-scalebar": "indus.github.io/dv-scalebar", + "dva-plus": "anyesu.github.io/dva-plus", + "dvan": "dvan.netlify.app", "dvd": "cdaringe.github.io/dvd-corner-bounce", "dynaflo": "trevorhanus.github.io/dynaflo", "dynamic-record": "na-west1.surge.sh", "dynamicsnode": "crisfervil.github.io/DynamicsNode", - "dynwriter": "orbitalproject.github.io/dyn-client", + "dynamotion": "cname.vercel-dns.com", // noCF` "dyo": "dyo.github.io/dyo", + "dyte": "dytejs.github.io", + "e-query": "mjkhonline.github.io/e-query", + "eagleeye": "webkrafters.github.io/eagleeye", "eahmed234": "eahmed234.github.io", "ease": "chisel.github.io/ease", + "easiermongo": "grook8958.github.io/easiermongo-docs", "easy-bot": "bigaston.github.io/easy-bot", + "easy-d": "easy-djs.github.io/easy-djs", + "easy-enigma": "armoredvortex.github.io/easy-enigma", + "easy-sewa": "prasuco.github.io/easy-sewa", + "easybuy": "danielwetan.github.io/easybuy", + "easyht": "yellowface233.github.io/easyht-website", + "easypass": "cgluwxh.github.io/easypass", "eatery-nod-w": "kevinast.github.io/eatery-nod-w", + "ebay-wrapper": "tradebuddyhq.github.io/ebay-wrapper.js.org", "ebnsina": "ebnsina.github.io/js.ebnsina.me", "echo": "licshee.github.io/echo.js", - "ecstar": "mouse484.github.io/Ecstar", + "eco": "quick-eco.netlify.app", + "ecstar": "ecstar-js.github.io/Ecstar", "ed2k": "sunnyli.github.io/ed2k.js", - "edazpotato": "edazpotato.github.io", - "edsonluiz": "edsonluiz.github.io", "ef": "classicoldsong.github.io/ef.js.org", "effectful": "awto.github.io/effectfuljs", "effects": "effectsjs.github.io/effectsjs", "eggsy": "eggsywashere.github.io", - "eiphop": "eiphop.netlify.com", + "ehsan": "ehsanfox.github.io", + "eight": "cnzc.github.io/eight", + "eiphop": "eiphop.netlify.app", + "eiyuu": "sinkaroid.github.io/eiyuu", "ejir": "ejir.github.io", + "ekscss": "maxmilton.github.io/ekscss", "elastic-builder": "sudo-suhas.github.io/elastic-builder", "elasticmagic": "kindritskyimax.github.io/elasticmagic-js", "electron-react-boilerplate": "electron-react-boilerplate.github.io/site", + "electron-settings": "nathanbuchar.github.io/electron-settings", + "elegance": "valdemar-dev.github.io/elegance-js", + "elementail": "riipandi.github.io/elementail", "elementnet": "elementnet.github.io", + "eleven": "elevendev.github.io", "elf": "mytharcher.github.io/elf.js.org", // noCF? (don´t add this in a new PR) "elixor": "hosting.gitbook.com", "eliza": "chigix.github.io/eliza-instrumentality", "elliot": "elliotboney.github.io", // noCF? (don´t add this in a new PR) "elmo": "lap00zza.github.io/elmo", "elock": "yourtion.github.io/node-elock", + "elode": "equneko.github.io/elode", + "elytra": "jonahemorgan.github.io/elytra.js", "emage": "douglasjunior.github.io/emage", "email-templates": "niftylettuce.github.io/email-templates", + "embarrassed-themes": "kbothub.github.io/Embarrassed-Themes", + "embedded": "ecmatc53.github.io/docs", "embedlam": "wnda.github.io/embedlam", + "ember": "ember-learn.github.io/ember-js-org", "ember-cli-page-object": "san650.github.io/ember-cli-page-object", // noCF? (don´t add this in a new PR) "ember-electron": "adopted-ember-addons.github.io/ember-electron", + "eme": "emejs.github.io", "emeraldcraftmc": "emeraldcraftmc.github.io", // noCF? (don´t add this in a new PR) "emoji": "egoist.github.io/emoji", "emoji-button": "joeattardi.github.io/emoji-button", + "emojifier": "badlydrawnletters.github.io/emojifier-docs", "emojipanel": "danbovey.github.io/EmojiPanel", + "emotify": "aryanbaburajan.github.io/Emotify", "empathy": "the94air.github.io/empathy-docs", "emre": "emrekara37.github.io", "emulisp": "grahack.github.io/EmuLisp", // noCF? (don´t add this in a new PR) + "emz": "emzjs.github.io", "enclave": "eanplatter.github.io/enclave", // noCF? (don´t add this in a new PR) - "endb": "chroventer.github.io/endb", + "encrypt-rsa": "miladezzat.github.io/encrypt-rsa", "endersquid": "endersquidjs.github.io", "endpoint-imposter": "lukaszmakuch.github.io/endpoint-imposter", "energy": "energychain.github.io/energy", - "engui": "engui.github.io", + "englishell": "tzador.github.io/englishell", + "envshh": "sanjib-sen.github.io/envshh", + "envy": "envy-group.github.io/webui", + "epi": "epispot.github.io/EpiJS", + "epicker": "eling486.github.io/EPicker-docs", "eplayer": "132yse.github.io/eplayer", "epoxy": "hosting.gitbook.com", "eq8": "eq8.github.io", "eqeq": "slikts.github.io/js-equality-game", + "eraxdb": "emirhanbaltas34.github.io/erax.db-website", "eray": "erayarslan.github.io", // noCF? (don´t add this in a new PR) - "erdems": "erdemsweb.github.io", + "erdem": "erdem85.github.io", "erebos": "mainframehq.github.io/erebos", + "erebus": "atn-development.github.io/erebus-documentation", + "eren": "eren885.github.io", "erest": "yourtion.github.io/node-erest", - "erik": "erikroyall.github.com", // noCF? (don´t add this in a new PR) + "erik": "erikroyall.github.io", // noCF? (don´t add this in a new PR) "erikng": "eriknguyen.github.io", + "erine": "cyberghxst.github.io/erine-docs", + "erlc": "digitalisdizzy.github.io/erlc", "ero": "mst-2.github.io/ero", "erpeel": "fikriks.github.io/erpeel", + "error-handler-e2": "miladezzat.github.io/error-handler-e2", + "es": "es-js.github.io", + "es-interview": "hylerrix.github.io/es-interview", "es.redux": "sergiodxa.github.io/redux-in-spanish", // noCF? (don´t add this in a new PR) + "es.single-spa": "single-spa.github.io/es.single-spa.js.org", // noCF "es2015-node": "martinheidegger.github.io/es6modules-nodejs", // noCF? (don´t add this in a new PR) "es6-module-seed": "blackmirror1980.github.io/es6-module-seed", - "es6-tween": "tweenjs.github.io/es6-tween", + "esbin": "esbin.netlify.app", + "esboot": "moonlitusun.github.io/esboot", "escape": "licshee.github.io/Escape.js", // noCF? (don´t add this in a new PR) "esfx": "esfx.github.io", + "esg": "cname.vercel-dns.com", // noCF + "eslint-plugin-wxml": "cname.vercel-dns.com", // noCF "esper": "codecombat.github.io/esper.js", + "estudiantil": "milersant.github.io/estudiantil", "eta": "alias.zeit.co", // noCF "eth": "eth-js.github.io/eth-dev-tools", - "ethaan": "ethaan.github.io/webpage", "ethavatar": "filips123.github.io/EthAvatar.JS", "euc": "wnda.github.io/euc", "euclid": "anandthakker.github.io/euclid", // noCF? (don´t add this in a new PR) + "eva": "eva-engine.github.io", "eval": "jshawl.github.io/eval", // noCF? (don´t add this in a new PR) "event-storage": "albe.github.io/node-event-storage", + "eventrix": "rstgroup.github.io/eventrix", "eventstore": "adrai.github.io/node-eventstore", // noCF? (don´t add this in a new PR) "everything": "ajays97.github.io/Everything.js", "evolutionland": "evolutionlandorg.github.io/js-sdk", "evolutions": "anshumanv.github.io/evolutions-webapp", "ewa": "lyfeyaj.github.io/ewa", + "exa": "realtux.github.io/exa", + "examples.whatsup": "whatsup.github.io/examples", // noCF "exbars": "youssefkababe.github.io/exbars", // noCF? (don´t add this in a new PR) "excmd": "elliottcable.github.io/excmd.js", - "exiftool-vendored": "mceachen.github.io/exiftool-vendored.js", + "executor": "executor.netlify.app", + "exeform": "hosting.gitbook.com", // noCF + "exome": "exome.pages.dev", // noCF "exp": "magicops.github.io/JQuery-expression-builder", + "express-kun": "hanipcode.github.io/express-kun", + "expressad": "flweber.github.io/express-ad-basicauth", "expressdynamichelpers": "marvnet.github.io/express-dynamic-helpers-patch", + "exprtk": "mmomtchev.github.io/exprtk.js", + "extension": "extension-js.github.io/docs", + "extension-sprint": "extension-sprint.github.io/home", "extenso": "theuves.github.io/extenso.js.org", "extraction": "rse.github.io/extraction", // noCF? (don´t add this in a new PR) "eye": "arguiot.github.io/EyeJS", + "f1": "marinofranz.github.io/f1.ts", "faceapp": "negarang.github.io/face-app", "facepalm": "santiagogil.github.io/facepalm", "facreative": "facreative.github.io", "fairy": "fairymeee.github.io", + "fakeyou": "leunamcrack.github.io/fakeyou.js", + "fakeyouapi": "ftk789.github.io/FakeYouAPI.js", + "fakeyouts": "jack3898.github.io/fakeyou.ts", "fallr": "faisalman.github.io/fallr-js", "fan": "garychamberlain.github.io/fan", + "fanbook-api-sdk": "fanbook-api-node-sdk.netlify.app", + "fanbook-mp-sdk": "fanbook-mp-sdk.netlify.app", + "fancy-pants": "fancy-pants.tritarget.org", "fantas": "fantastiser.github.io", + "farfetch": "websitebeaver.github.io/far-fetch", "farfetchd": "achannarasappa.github.io/farfetchd", // noCF? (don´t add this in a new PR) "farzad": "wikiweb.github.io/farzad", - "faux": "fauxOS.github.io", + "fast-ease": "caracal7.github.io/fast-ease", + "fasteer": "fasteerjs.github.io", + "faux": "fauxos.github.io", + "fcanvas": "fcanvas.github.io/docs", "fcbosque": "cronopio.github.io/fcbosque", // noCF? (don´t add this in a new PR) "fe": "xcss.github.io/FE", "feature-u": "kevinast.github.io/feature-u", "feeble": "feeblejs.github.io/feeble", - "feedback": "mubaidr.github.io/feedback.io", - "fela": "rofrischmann.github.io/fela", // noCF? (don´t add this in a new PR) - "fem": "frani.github.io/fem", + "fela": "cname.vercel-dns.com", // noCF "festercluck": "festercluck.github.io", // noCF? (don´t add this in a new PR) "fetch-json": "center-key.github.io/fetch-json", + "fetch-the-parrot": "fetch-the-parrot.netlify.app", + "fetchr": "slxca.github.io/fetchr.js", + "fff": "importantimport.github.io/fff", "fidel": "fidelxyz.github.io", "fikri": "ikrydev.github.io/fikri.js.org", + "file-extension": "ultirequiem.github.io/file-extension", + "file.lt": "cname.vercel-dns.com", // noCF + "filebokz": "fivefifteen.github.io/filebokz", + "filejack": "cname.vercel-dns.com", // noCF "filer": "filerjs.github.io/filer", + "fill100": "matteobruni.github.io/fill100", + "filter": "mg98.github.io/filter.js", + "finance": "financejs.github.io/finance.js", + "financial": "financialjsorg.netlify.app", "finder": "applait.github.io/finderjs", // noCF? (don´t add this in a new PR) + "fini": "janovekj.github.io/fini", "fire-hydrant": "cchamberlain.github.io/fire-hydrant", // noCF? (don´t add this in a new PR) + "fireblast": "thefireblast.github.io", "firenze": "fahad19.github.io/firenze", // noCF? (don´t add this in a new PR) "fireorm": "wovalle.github.io/fireorm", + "fireworks": "crashmax-dev.github.io/fireworks-js", + "first-accord": "sticknologic.github.io/First-Accord", + "fish": "cdaringe.github.io/fish", "five": "jackdcrawford.github.io/five", "flamecord": "flamexode.github.io/flamecord", - "flameshot": "flameshotapp.github.io", "flap": "slurmulon.github.io/flap", + "flare": "nsaunders.github.io/flare", + "flaregram": "adityash4rma.github.io/flaregram-website", + "flash": "flashcardjs.github.io", "flatpickr": "flatpickr.github.io", "flavor": "blackmirror1980.github.io/flavor-js", "fld-grd": "mrksbnch.github.io/fld-grd", - "flexmasonry": "kavanmevada.github.io/flex_masonry", // noCF + "flightpkg": "cname.vercel-dns.com", // noCF + "flipnote": "jaames.github.io/flipnote.js", + "flood": "flood.jesec.io", // noCF + "floppy": "hosting.gitbook.io", // noCF + "flor": "florplayer.github.io", "flowchart": "adrai.github.io/flowchart.js", // noCF? (don´t add this in a new PR) "flowcon": "oknosoft.github.io/flowcon", + "flowjv": "pkishorez.github.io/flowjv", + "flowout": "falkz.github.io/flowout.js", "flowpainter": "sirajchokshi.github.io/FlowPainter", - "fluid": "jottocraft.github.io/fluid", "fluorite": "chisel.github.io/fluorite", "fluxoff": "kingscott.github.io/flux-off", // noCF? (don´t add this in a new PR) "flvplayer": "zhw2590582.github.io/FlvPlayer", "flybook": "rhiokim.github.io/flybook", - "flying-squid.prismarine": "prismarinejs.github.io/flying-squid", - "fnx": "fnxjs.gitbooks.io/fnx-documentation", + "fmateoc": "fmateoc.github.io", + "fnbr": "fnbrjs.github.io/docs", + "foca": "foca-js.github.io/foca", "focusoverlay": "mmahandev.github.io/FocusOverlay", "fontdragr": "ryanseddon.github.io/font-dragr", - "food": "teamtofu.github.io/foodweb", + "food": "russellsteadman.github.io/foodweb", + "foolhtml": "itsayush1704.github.io/foolhtml", "forceify": "dalisoft.github.io/Forceify", "form": "the94air.github.io/form", + "formast": "tencent-cdc.github.io/formast", "formred": "zewish.github.io/formred", + "formvuelate": "formvuelate.netlify.app", "fortnite": "ickerio.github.io/fortnite.js", "fortune": "fortunejs.github.io/fortune", // noCF? (don´t add this in a new PR) - "foxford": "netology-group.github.io/foxford.github.io", + "fosspwa": "foss-pwa.github.io/app-store", + "fov": "animafps.github.io/fov-utilities", + "foxgpt": "coolgoagle.github.io/fox", + "foxhole-client": "foxhole-clientjs.netlify.app", "foxify": "foxifyjs.github.io/foxify", "foxman": "kaola-fed.github.io/foxman", - "framework": "plasnerd.github.io/Framework.js", + "foxogram": "foxogram-js.pages.dev", + "fp": "iotcat.github.io/fp", + "fr.single-spa": "single-spa.github.io/fr.single-spa.js.org", // noCF + "frame-depth": "nwong212.github.io/frame-wizard", + "framelet": "potatoland4492.github.io/Framelet", + "framework": "frameworkjavascript.github.io", "frameworkless": "mtimofiiv.github.io/frameworkless", + "frankmosca": "alias.zeit.co", // noCF "fre": "132yse.github.io/fre", + "freegpt": "ashishagarwal2023.github.io/freegpt.js.org", "freemarker": "ijse.github.io/freemarker.js", // noCF? (don´t add this in a new PR) "freezer": "pakastin.github.io/freezer", "frint": "frintjs.github.io/frint.js.org", "fritzbox": "lesander.github.io/fritzbox.js", "front-end": "whoisjorge.github.io/front-end", + "frontik": "fluxtech-me.github.io/frontik", "frontless": "nesterow.github.io/frontless", + "fronts": "unadlib.github.io/fronts", + "frontsearch": "1d10t1c-stud10s.github.io/frontsearchjs", + "frost": "cesiumlabs.github.io/frost", + "frui": "ossphilippines.github.io/frui", "frzr": "pakastin.github.io/frzr", "fs-nextra": "bdistin.github.io/fs-nextra", + "fte": "scintilla4evr.github.io/fte", "fucao": "fusuhub.github.io", "fuck": "gerd2002.github.io/fuck.js", + "fudgel": "fidian.github.io/fudgel", + "fugapedia": "fugapediajs.github.io/website", "fullscreen": "motyar.github.io/fullscreen", "funbook": "egoist.github.io/funbook", - "futch": "jfbrennan.github.io/futch", + "funcs": "funcs-package.github.io/docs", + "fusilli": "anthemaker.github.io/Fusilli.js", + "fvuar": "fvuarjs.netlify.app", + "fw": "fjs.alwaysdata.net", + "fy": "fyjs.netlify.app", "fyi": "tobihrbr.github.io/fyi", "g": "nodebox.github.io/g.js", + "g-point": "bdvela.github.io/g-point", + "gaiman": "jcubic.github.io/gaiman", "gal": "galmail.github.io", // noCF? (don´t add this in a new PR) - "game-tracker": "endbug.github.io/game-tracker", + "game-tracker": "cname.vercel-dns.com", // noCF + "gamecord": "gamecord.lazyowl.repl.co", // noCF "gamedevcontestal": "fromdenisvieira.github.io/gamedevcontestal", // noCF? (don´t add this in a new PR) + "gametime": "parking-master.github.io/Gametime.js", "gametracker": "officialpiyush.github.io/gametracker.js", "gamingnet": "gamingmineblox.github.io/GamingNet", + "garlic-team": "garlic-team.github.io/website", + "gathertown": "warengonzaga.github.io/gathertown.js", + "gatsby-source-pixiv": "poipoii.github.io/gatsby-source-pixiv", "gazosekai": "starkblaze01.github.io/Gazo_Sekai", + "gba": "frogweezer.github.io/gba.js.org", + "gcommands": "garlic-team.github.io/GCommands", "gcse": "abemedia.github.io/jquery-gcse", + "gdal3": "bugra9.github.io/gdal3.js", + "gdi": "katehra-brc.github.io/gdi.js.org", "geekr": "ruanyl.github.io/geekr", // noCF? (don´t add this in a new PR) - "geniucker": "geniucker.github.io", + "gemstone": "pierreavn.github.io/gemstone", + "genanki": "krmanik.github.io/genanki-js", + "generate-license-file": "tobyandtoby.github.io/generate-license-file", + "genius-lyrics": "zyrouge.github.io/genius-lyrics", + "genoacms": "genoacms.github.io/docs", + "genpass": "bnnanet.github.io/genpass.js", "genpasswd": "exos.github.io/genpasswd", // noCF? (don´t add this in a new PR) + "geolocation-promise": "js-pugilist.github.io/geolocation-promise", + "geonet": "carolinaisslaying.github.io/geonet", "george": "georgeyue.github.io/george", + "geotargeting": "sntran.github.io/geotargeting", + "geppetto": "matthijsgroen.github.io/geppetto", + "geralcr": "geralcr.github.io/Portafolio", "gerardo": "gvzq.github.io/gerardo", "german": "dipanshkhandelwal.github.io/Learning-German", "germanov": "germanov-dev.github.io", - "get": "hxco.github.io/Get", + "get": "get-js-org.dns.huangxin.org", // noCF "getdot": "enderandfiredev.github.io/getdot", "getlink": "ilovecode1.github.io/linkjs", // noCF? (don´t add this in a new PR) "ghapi": "haydennyyy.github.io/node-ghapi", "ghastly": "hkwu.github.io/ghastly", "ghsamm": "ghsamm.github.io", // noCF? (don´t add this in a new PR) "giant-piano": "moroshko.github.io/giant-piano", // noCF? (don´t add this in a new PR) + "gil": "imskeptical.github.io/gil.js", + "girish": "chaudhs769.github.io/girish.js.org", "girls": "girls-js.github.io", "girlscript": "girlscriptjaipur.github.io", + "git-terminal": "jcubic.github.io/git", + "gitbanner": "asheeeshh.github.io/gitbanner", "gitdown": "gc.github.io/gitdown", - "gitinit": "silly-shirley-8e44e3.netlify.com", - "gitm": "gitm.netlify.com", - "gitme": "gitme.netlify.com", + "githubtouch": "github-touch.github.io", + "gitinit": "silly-shirley-8e44e3.netlify.app", + "gitme": "gitme.netlify.app", "gitmoji": "jeff-tian.github.io/gitmoji", - "gitstyle": "inKerk.github.io/git-style-guide", + "gitstyle": "inkerk.github.io/git-style-guide", + "givify": "cname.vercel-dns.com", // noCF "gka": "gkajs.github.io/gka", "glaze": "kripod.github.io/glaze", - "glitterbot": "glitterbot.netlify.com", //noCF + "glicko2": "animafps.github.io/glicko2.ts", + "glicol": "glicol-js.netlify.app", + "glitchapi": "cname.vercel-dns.com", // noCF + "glitchy-scratch": "glitchy-scratch.github.io", + "glitterbot": "glitterbot.netlify.app", // noCF "glize": "datamart.github.io/Glize", + "globx": "aminadav.github.io/globx", + "gloria": "gloriajs.github.io", "glottologist": "arguiot.github.io/Glottologist", + "glyph": "zyrouge.github.io/glyph.css", "gnatale": "giosooul.github.io/gnatale.github.io", + "go": "northwoodssoftware.github.io/go.js.org", "god": "godow.github.io", - "godzm4tt3o": "godzm4tt3o.github.io", + "godown": "cname.vercel-dns.com", // noCF + "goji": "airbnb.github.io/goji-js", "gol": "goljs.github.io/GoL", "gondel": "namics.github.io/gondel", + "goober": "cristianbote.github.io/goober", "good": "amirhossein693.github.io/good", "goodshare": "koddr.github.io/goodshare.js", + "gosling": "gosling-lang.github.io/gosling.js", + "gost-cli": "minecraftpublisher.github.io/gost-cli", "gotanda": "gotandajs.github.io", - "gottasurf": "jottocraft.github.io/surf", - "gogs": "rpgjw54g31k5yd4q.preview.edgeapp.net", - "graffy": "aravindet.github.io/graffy", - "gram": "gram-js.github.io/gramjs", + "govind": "emgk.github.io", + "gr": "cname.vercel-dns.com", // noCF + "gracile": "gracile.netlify.app", + "graffle": "jasonkuhrt.github.io/graphql-request", + "gram": "gram-js.github.io/docs", "gramps": "gramps-graphql.github.io/gramps", - "graphene": "graphene-react.netlify.com", + "graph": "tomas-wrobel.github.io/graph", + "graphene": "graphene-react.netlify.app", + "graphgame": "uellenberg.github.io/Graphgame", "graphics2d": "keyten.github.io/Graphics2D", // noCF? (don´t add this in a new PR) + "graphql-pokemon": "favware.github.io/graphql-pokemon", "graphstore": "besync.github.io/graphstore", - "grapnel": "engineeringmode.github.io/Grapnel.js", // noCF? (don´t add this in a new PR) "gregory": "f3z0.github.io", "grep": "42ua.github.io/grep", "greylock": "datamart.github.io/Greylock", "gridiron": "noderaider.github.io/gridiron", - "gridsplit": "assetinfo.github.io", // noCF? (don´t add this in a new PR) + "gridl": "klattiation.github.io/gridl", + "griffel": "microsoft.github.io/griffel", + "groundstate": "axtk.github.io/groundstate", + "groupme": "groupme-js.github.io/website", + "growfield": "fivefifteen.github.io/growfield", + "grpcity": "cname.vercel-dns.com", // noCF + "grtblog": "grtsinry43.github.io/grtblog", "grub": "grubburg.github.io/blog", "gruft": "nikola.github.io/gruft", // noCF? (don´t add this in a new PR) "grumpy": "aidenybai.github.io/grumpy", + "gterminal": "gterminal-project.github.io", "gtfs": "gtfs-js.github.io/gtfs.js.org", - "guguji5": "guguji5.github.io", + "guide.guildedbot": "cname.vercel-dns.com", // noCF + "guide.guildedts": "cname.vercel-dns.com", // noCF + "guild": "guild-js.github.io/guild.js", + "guildcord": "guildcord.github.io/docs", + "guilded": "cname.vercel-dns.com", // noCF + "guildedapi": "rellylegend.github.io/guilded-api.js", + "guildedbot": "guilded-bot-npm.github.io/Guilded-Bot-Docs", + "guildedts": "cname.vercel-dns.com", // noCF + "guildeno": "guildeno.github.io/guildeno", "guilherme": "guilhermedelemos.github.io/guilherme", "guillotine": "matiasgagliano.github.io/guillotine", // noCF? (don´t add this in a new PR) - "guineapigbot": "guineapigbot.github.io", - "guiseek": "guiseek.github.io", // noCF? (don´t add this in a new PR) + "guitar": "ronyeh.github.io/guitar", "gully": "nmabhinandan.github.io/gully", // noCF? (don´t add this in a new PR) "gulpkit": "gulpkit.github.io/GulpKit", "gun": "gundb.github.io", // noCF? (don´t add this in a new PR) + "gun-avatar": "defucc.github.io/gun-avatar", // noCF + "gun-vue": "defucc.github.io/gun-vue", // noCF "guppy": "daniel3735928559.github.io/guppy", - "guuibayer": "guuibayer.github.io", // noCF? (don´t add this in a new PR) - "gylidian": "gylidian.github.io", + "gustwind": "gustwind.netlify.app", + "guvercin": "guvercinjs.github.io", "gyps": "huijari.github.io/Gyps", "gyre": "wridder.github.io/GyreJS", // noCF? (don´t add this in a new PR) "gyx": "yourtion.github.io/gyx.js.org", "h": "makenowjust.github.io/h.js", + "h3": "h3rald.github.io/h3", "h7ml": "h7ml.github.io/web", "ha-store": "fed135.github.io/ha-store", "habra": "jarvis394.github.io/habra", - "hacktm": "hacktm.netlify.com", + "hacktm": "hacktm.netlify.app", "hahuutin": "hahuutin.github.io", "hale": "haleshaw.github.io/hale", "halil": "hibrahimsafak.github.io", // noCF? (don´t add this in a new PR) "haloapi": "derflatulator.github.io/haloapi.js", // noCF? (don´t add this in a new PR) + "ham": "militia21.github.io/ham", "hamburger-menu": "center-key.github.io/hamburger-menu", "hamed": "phpniki.github.io/hamed", - "handsfree": "handsfreejs.github.io/handsfree", + "hana": "romantic-kare-c84899.netlify.app", + "hanan": "hanandito.github.io/teddypicker", "hapi-sol": "yonjah.github.io/hapi-sol", + "hapin": "ha-pin.github.io", "happy": "e24.github.io/happy", // noCF? (don´t add this in a new PR) - "happyae": "happyae.github.io", + "harry": "harry-yep.github.io", + "hashchat": "hashchat-js.netlify.app", + "hashjump": "fivefifteen.github.io/hashjump", + "hashparser": "rvanbaalen.github.io/hashparser", + "hasura-om": "mrspartak.github.io/hasura-om", "hay": "hayjs.github.io/hay.js.org", "hbase": "adaltas.github.io/node-hbase-docs", + "hcs": "kimcore.github.io/hcs.js", // noCF + "headunit": "riipandi.github.io/headunit", "heartseekers": "rajington.github.io/heartseekers", // noCF? (don´t add this in a new PR) + "heax": "coderosh.github.io/heaxjs", // noCF "hegel": "jsmonk.github.io/hegel", + "helia": "ipfs.github.io/helia", + "hell": "hell-js.github.io", "hello": "hello-js-org.github.io", // noCF? (don´t add this in a new PR) + "helly": "helly.netlify.app", + "helma": "antville.github.io/helma", "helper": "tbnritzdoge.github.io/helperweb", + "helpful": "togatech.github.io/helpful.js", + "hepsiburada": "berkaltiok.github.io/hepsiburada", + "hereby": "jakebailey.github.io/hereby", + "heroku": "gary50613.github.io/herokuapi.js", + "hexoplusplus": "hexoplusplus.github.io/docs", + "hfsyun": "hfsyun.github.io", "hibiki": "claritymoe.github.io/hibiki", - "hickacou": "hickacou.github.io", + "hiddenfrombots": "cname.vercel-dns.com", // noCF + "highfive": "hosting.gitbook.io", // noCF "highway": "dogstudio.github.io/highway", "hijiangtao": "hijiangtao.github.io/hijiangtao.js.org", + "hikidashi": "kaihodev.github.io/hikidashi", "hilo": "erikroyall.github.io/hilo", // noCF? (don´t add this in a new PR) "hilo3d": "hiloteam.github.io/Hilo3d", + "hindenburg": "skeldjs.github.io/Hindenburg", + "hippy": "zoomchan-cxj.github.io/Hippy", + "hiren": "hiren2001.github.io/hiren.js.org", "hiteshsubnani": "hiteshsubnani0128.github.io/hiteshsubnani", "hiven": "hivenapp.github.io/hiven.js", "hk": "akura-co.github.io/hk", // noCF? (don´t add this in a new PR) "hltvbot": "nescabir.github.io/HLTVBot", + "hmsscioly": "scioly.netlify.app", "hoa": "thehoa.github.io", - "hoast": "hoast.github.io", - "hois": "hoisW.github.io", - "hookstate": "hookstate.netlify.com", // noCF + "hoast": "hoast.github.io/hoast", + "hois": "hoisw.github.io", + "holidaycss": "evgenyorekhov.github.io/holiday.css", + "holo": "holo-js-org.github.io/www", + "hooked-on-redux": "harryhope.github.io/hooked-on-redux", + "hookstate": "hookstate.netlify.app", // noCF "hooloo": "hooloo.github.io", // noCF? (don´t add this in a new PR) + "hoshii": "reinhello.github.io/hoshii-docs", + "houp": "houpjs.github.io/houp-docs", + "hours": "cname.vercel-dns.com", // noCF "how-to-mithril": "stephanhoyer.github.io/how-to-mithril", + "hox": "umijs.github.io/hox", "hrishi": "hrishi045.github.io", "hrtable": "uyouthe.github.io/hrtable", + "hscroll-slider": "evgeniymukhamedjanov.github.io/hscroll-slider", "hsiaoyi0504": "hsiaoyi0504.github.io", + "ht": "paul-browne.github.io/html-in-javascript", + "html-webpack-plugin": "jantimon.github.io/html-webpack-plugin-repl", "htmljar": "syntacstudio.github.io/html-jar", + "htony": "themetony.github.io/hugo-theme-tony", "http4ts": "http4ts.github.io/http4ts", + "httpcord": "httpcord.github.io/httpcord", + "httpfy": "devxprite.github.io/httpfy", + "httpman": "httpman.github.io", + "https": "yakeing.github.io/https.js", // noCF + "httpunit": "samzh72.github.io/httpunit", "hub": "yyued.github.io/hub.js", - "hubble": "hubble.netlify.com", + "hubble": "hubble.netlify.app", + "hubo": "huvboo.github.io", "hugorocaproyectos": "hugoroca.github.io/coleccion-proyectos", - "human": "human-js.gitbooks.io", // noCF? (don´t add this in a new PR) "humble": "humblejs.github.io", - "hx": "hifocus.github.io/www.hxis.me", - "hybrids": "hosting.gitbook.com", // noCF + "hx": "hx-js-org.dns.huangxin.org", // noCF + "hybrids": "hybridsjs.github.io/hybrids", "hyde": "gheek.github.io/hyde", // noCF? (don´t add this in a new PR) - "hydrogen": "siddharthbose-codeware.github.io/hydrogen-website", + "hyder": "imprakashraghu.github.io/hyderjsweb", + "hydro": "hydro-dev.github.io", "hyf": "yafey.github.io", + "hymity": "sarveshmrao.github.io/hymity", + "hyperdrive": "hyperdrivejs.github.io", "hyperform": "hyperform.github.io", "hyperhtml-styleguide": "albertosantini.github.io/hyperhtml-styleguide", // noCF + "hypixel": "hypixelts.netlify.app", + "hyssop": "lillupad.github.io/hyssop.js", + "i18n-collector": "gmaxlev.github.io/i18n-collector", "i18n4v": "shibukawa.github.io/i18n4v", "iagrib": "iagrib.github.io", "iamsurajdc": "iamsurajdc.github.io", "icecast": "jucrouzet.github.io/icecast.js", + "icecream": "ice-cream-js.github.io/website", + "ices": "icesjs.github.io/ices", + "icones": "icones.netlify.app", + "id": "andae.github.io/id", + "id.single-spa": "single-spa.github.io/id.single-spa.js.org", // noCF "id3": "jeff-tian.github.io/id3", "idettman": "idettman.github.io", + "idraw": "idrawjs.github.io", "ienumerable": "mbasso.github.io/ienumerable", "iffe": "iffe-team.github.io", - "ifis": "razod.github.io/ifis", "iflow": "unadlib.github.io/iflow", + "igecorp": "igecorp.github.io/ige-djs-website", "ignite": "ignitejscl.github.io", - "iiilfaaa": "iiilfaaa.github.io", + "iiimix": "iiimix.github.io/iiimixjsorg", "iio": "iioinc.github.io/iio.js", // noCF? (don´t add this in a new PR) - "ilfa": "iiilfaaa.github.io/www", - "illuxi": "razod.github.io/illuxi", + "illustrator": "illustratorjs.netlify.app", "imagecapture": "googlechrome.github.io/imagecapture-polyfill", + "imagin": "ilrc.github.io/imagin", + "imagine": "karimayachi.github.io/imagine", + "imap-mailbox": "vsdparibas.github.io/imap-mailbox-doc", "imask": "unmanner.github.io/imaskjs", "imbue": "ghosts.github.io/Imbue", - "imcvampire": "imcvampire.github.io", + "imcvampire": "cname.vercel-dns.com", // noCF "imeme": "svenmeister.github.io/imeme.js.org", "imgops": "dogancelik.github.io/imgops-multi", // noCF + "iminfinity": "js-org-test.netlify.app", "immense": "immense.github.io", // noCF? (don´t add this in a new PR) "immybox": "immense.github.io/immybox", // noCF? (don´t add this in a new PR) "impress": "impress.github.io/impress.js", "imrc-datetime-picker": "smrsan76.github.io/imrc-datetime-picker", - "indrascript": "tedirghazali.github.io/indrascript", + "imvu": "imvujs.pages.dev", // noCF + "indie": "indie-org.github.io/indie", "infinite-tree": "cheton.github.io/infinite-tree", - "infinity": "dragoonzx.github.io/infinity", + "infoooze": "devxprite.github.io/infoooze", + "inig": "inig.github.io", "initial-wu": "initial-wu.github.io", "injectify": "injectify.github.io/docs", - "inko": "inko.netlify.com", + "ink": "colossalchicken.github.io/ink.js", + "inklog": "lucaslah.github.io/inklog.js", + "inko": "inko.netlify.app", "inline-style-prefixer": "rofrischmann.github.io/inline-style-prefixer", "innova": "innova-fll.github.io", "inscriptum": "sumbad.github.io/inscriptum", "inset": "patlillis.github.io/inset.js", + "insta": "androz2091.github.io/instajs-website", "instabousing": "jlbousing.github.io/instaBousing", "instacam": "xavierfoucrier.github.io/instacam", + "instaiva": "7orp3do.github.io/Instaiva", + "instance2d": "nikaxe-dev.github.io/Instance2d", "instant": "instant.github.io", "integreat": "hosting.gitbook.com", - "intelligo": "intelligo.netlify.com", + "integro": "jpsilva.github.io/integro", + "intelligo": "intelligo.netlify.app", + "inter": "interjs.github.io", + "internetmarke": "schaechinger.github.io/internetmarke", "interview": "fengzilong.github.io/interview-101", + "invent": "isaiahpatton.github.io/InventJS", "invoicing": "vahe.github.io/InvoicingJs", - "ion": "ionjs-dev.github.io", - "iori": "iori20091101.github.io", "iot": "product-engineer.github.io/iot.js.org", // noCF "ip-address": "beaugunderson.github.io/ip-address", // noCF? (don´t add this in a new PR) "ipang": "ipang-dwi.github.io/ipang", + "ipc": "alperr.github.io/ipc", + "ipe": "ipe.netlify.app", + "ipe-plugins": "inpageedit.github.io/Plugins", + "iphw": "spacemiqote.github.io/iphw", "ipv4": "licshee.github.io/IPv4-CIDR-Prefix-Merger", "ipynb": "jirutka.github.io/ipynb2html", // noCF + "iq": "cname.vercel-dns.com", // noCF "ir": "irjs.github.io/docs", "iresume": "supremefish.github.io/iresume", "iro": "jaames.github.io/iro.js", + "iron-oxide": "carsonmckinstry.github.io/iron-oxide-documentation", "irouter": "alhaqhassan.github.io/irouter.js", "is": "arasatasaygin.github.io/is.js", // noCF? (don´t add this in a new PR) + "is-number": "ultirequiem.github.io/is-number", + "isadb": "renato425.github.io/isadb.github.io", + "isbot": "omrilotan.github.io/isbot", "iscaptive": "marvnet.github.io/iscaptive", - "isfa": "isfaaghyth.github.io", "ishan": "ishanthukral.github.io/ishan.js", // noCF? (don´t add this in a new PR) "isic": "isic.github.io/isic-docs", + "isimon": "nsleep.github.io", "islisp": "ta2gch.github.io/islisp.js.org", "istanbul": "istanbuljs.github.io", - "italia": "milano-js.github.io/italia-js", // noCF? (don´t add this in a new PR) + "itemszop": "michaljaz.github.io/itemszop", "itsashis4u": "itsashis4u.github.io", // noCF? (don´t add this in a new PR) "itunes-bridge": "angrykiller.github.io/iTunes-bridge", - "iutdb": "xchairs.github.io/iutdb.github.io", + "itzik": "itzik.netlify.app", + "iwanttocountfromone": "realcyguy.github.io/iwanttocountfromone.js", "j3n5en": "j3n5en.github.io", - "jackbot": "cairo2k18.github.io/jackbot", "jackyef": "jackyef.github.io/jackyef", + "jacob": "jacob-marshall.github.io/jacob", "jacob-ebey": "jacob-ebey.github.io", "jacques": "jacquesmarais.github.io/jacques", // noCF? (don´t add this in a new PR) + "jadl": "jadl.netlify.app", "jaibascript": "vasco3.github.io/jaibascript", - "jaipur": "jaipurjs-website-7b695.netlify.com", + "jaipur": "jaipurjs-website-7b695.netlify.app", "jakarta": "jakartajs.github.io/jakartajs", // noCF? (don´t add this in a new PR) "jamal": "jamaljs.github.io/jamaljs", "james": "jamesrowen.github.io/james", // noCF? (don´t add this in a new PR) - "jameshrx": "sawyerbx.github.io/james", "jargon": "hugogiraudel.github.io/SJSJ", // noCF? (don´t add this in a new PR) - "jasonliang": "jasonliang512.github.io", + "jaset": "maxherrmann.github.io/jaset", + "jason": "ultirequiem.github.io/jason-formatter", + "jasonliang": "jasonliang-dev.github.io", "javali": "diogomoretti.github.io/javali", "javascript-kitchen": "jskitchen.github.io", + "jayzou": "jayzou.github.io", "jbone": "kupriyanenko.github.io/jbone", // noCF? (don´t add this in a new PR) "jcord": "discord-jcord.github.io/jcord", "jdc": "jdceeb.github.io", "jds": "alimanman.github.io/jds", + "jds25": "alimanman.github.io/jds25", + "je": "cname-china.vercel-dns.com", // noCF + "jelly": "hosting.gitbook.io", // noCF "jena": "javascript-in-jena.github.io", // noCF + "jericho-api": "sidisliveyt.github.io/Jericho-Api", + "jericho-player": "sidisliveyt.github.io/Jericho-Player", + "jessm": "jessi-mhernandez.github.io/JessicaM", + "jetaimetantquetuestoi": "dakokonutboi.github.io/jetaimetantquetuestoi", "jets": "nexts.github.io/Jets.js", - "jinya": "chenjinya.github.io", + "jinada": "redsplit.github.io/jinada", "jjlc": "k-yak.github.io/JJLC", // noCF? (don´t add this in a new PR) "jk": "joname1.github.io", "jl": "crusj.github.io", + "job": "izemil.github.io/job", "jobs": "alias.zeit.co", // noCF + "joe": "joeleeofficial.github.io/joe", + "joelmathew": "rec0il99.github.io/joelmathew", "jogja": "jogjajs.github.io", // noCF "john": "jozhn.github.io", "jokes": "jeff-tian.github.io/jokes", + "jomb": "mrtampan.github.io/jomb-music", + "jonathangt": "jonathangt.github.io/portafolio", "jonny": "shirajuki.github.io/jonny", + "jonnynl": "shirajuki.github.io/jonnynl", "jonstonchan": "jonstonchan.gitlab.io", // noCF + "jose-qs": "jose-qs.github.io/Portafolio", + "josecarloszamoragomezcv": "josecarloszamoragomez.github.io/CV", + "josecarloszamoragomezportfolio": "josecarloszamoragomez.github.io/Portfolio", "josep": "warlock.github.io", + "josn": "iaseth.github.io/josn", + "jova": "bracketed.github.io/jova.js", + "joycon": "cname.vercel-dns.com", // noCF "jparticles": "jparticles.github.io/Documentation", "js-fixerr": "anujsinghwd.github.io/js-fixerr", + "js-labs": "cname.vercel-dns.com", // noCF + "js2lua": "xiangnanscu.github.io/js2lua", // noCF "jscord": "thepoptartcrpr.github.io/jscord", - "jsnippet": "JesseEisen.github.io/snippets", // noCF + "jsdec": "liulihaocai.github.io/JSDec", + "jsfe": "jsfe.netlify.app", + "jslabs": "cname.vercel-dns.com", // noCF + "jsnippet": "jesseeisen.github.io/snippets", // noCF "jsoboro": "jsoboro.github.io", - "json-e": "taskcluster.github.io/json-e", + "json-diff-kit": "rexskz.github.io/json-diff-kit", + "json-e": "json-e.github.io/json-e", + "json-formatter": "arnav-kr.github.io/json-formatter", "json-schema-faker": "json-schema-faker.github.io/website-jsf", + "json-to-plain-text": "sumithemmadi.github.io/json-to-plain-text", "jsonapi": "ethanresnick.github.io/json-api", + "jsoning": "khalby786.github.io/jsoning", "jsonql": "joel-chu.github.io/jsonql-org", "jsonui": "yourtion.github.io/vue-json-ui-editor", "jsonuri": "aligay.github.io/jsonuri", + "jsp": "hiren2001.github.io/jsp", + "jstyle": "lxhom.github.io/jstyle", // noCF "jsxcad": "jsxcad.github.io", "juancarlosqr": "juancarlosqr.github.io", // noCF? (don´t add this in a new PR) - "julien": "julien.github.io", // noCF? (don´t add this in a new PR) + "julianflancheros": "julianflancheros.github.io/Prueba", + "july": "onlyjuly.github.io", "juno-106": "stevengoldberg.github.io/juno-106", // noCF? (don´t add this in a new PR) - "jus": "zeke.github.io/jus.js.org", // noCF? (don´t add this in a new PR) "just": "justjs.github.io", "justin-schroeder": "justin-schroeder.github.io", "juzgados": "mteyss.github.io/juzgados", + "jwc": "jwcjs.github.io/docs", + "jwjawa": "cmdjwj.github.io", "jwt-autorefresh": "cchamberlain.github.io/jwt-autorefresh", // noCF? (don´t add this in a new PR) - "jz": "jz6.github.io", + "jwtonline": "boneyt92.github.io/jwtonline", "kafka": "tulios.github.io/kafkajs", + "kaguwo": "kaguwos-portfolio.netlify.app", + "kahoot": "na-west1.surge.sh", "kainy": "kainy.github.io/js.org", "kairusds": "kairusds.github.io", + "kali": "kali65536.github.io", "kalm": "fed135.github.io/kalm.github.io", // noCF? (don´t add this in a new PR) + "kampala": "javascriptkampala.github.io/kampala", + "kanji": "eidoriantan.github.io/kanji.js", "karateblobs": "karatewumpus.github.io/karateblobs", - "karl": "focused-bassi-cc0eff.netlify.com", + "karl": "focused-bassi-cc0eff.netlify.app", "karolina-and-ryan": "mockturtlesoup.github.io/karolina-and-ryan", - "kate": "thecodesuite.github.io/katebot", - "kawaii": "moemoesoft.github.io/kawaii", //noCF + "karrot": "665c97b7-c1b8-473c-b6b8-48006bfae344.repl.co", // noCF + "kasfy": "kasfy.github.io/kasfy.js.org", + "kasumi": "cname.vercel-dns.com", // noCF + "katheesh": "katheesh.github.io/katheesh.js", + "kawaii": "moemoesoft.github.io/kawaii", // noCF "kcak11": "kcak11.github.io/js-org-web", "kdiacodes": "kdiacodes.github.io", - "kea": "kea.netlify.com", - "keeping-up-with-javascript": "jasperv.github.io/keeping-up-with-javascript", "kelvinho": "kelvin2go.github.io", // noCF? (don´t add this in a new PR) "kewitz": "kewitz.github.io", + "keyframe-refiner": "keyframe-refiner.github.io/keyframe-refiner", "keypress": "rumkin.github.io/keypress.js.org", + "keystone": "keystone-ssg.netlify.app", + "keyvhq": "microlinkhq.github.io/keyvhq", + "keyvify": "zyrouge.github.io/Keyvify", + "kiai": "buape.github.io/utilities", + "kilic": "kiliczsh.github.io", "kilobyte": "kilobytehq.github.io/open-js", "kilvin": "rofrischmann.github.io/kilvin", "kim": "khareemnurulla.github.io/kim", - "kindavishal": "kindavishal.netlify.com", + "kimera": "ultirequiem.github.io/kimera", + "kindavishal": "kindavishal.netlify.app", "kiranremmarasu": "kiranremmarasu.github.io/kiranremmarasu", + "kita": "kitajs.github.io/docs", "kite": "kite-js.github.io/kite", "kiwidocs": "arguiot.github.io/KiwiDocs", + "kkapi": "cname.vercel-dns.com", // noCF + "kkna": "importantimport.github.io/kkna", "klasa": "dirigeants.github.io/klasa-website", "klasy-eris": "motiontheking.github.io/klasy-eris", + "klayr-did": "aldhosutra.github.io/klayr-did", "klepto": "mwjaworski.github.io/klepto", - "klick": "hosting.gitbook.com", + "kloner": "fivefifteen.github.io/kloner", "kmeans": "jeff-tian.github.io/k-means", - "knacss-vue": "arnissolle.github.io/knacss-vue", "knc": "chaituknag.github.io", - "knowyourbundle": "enapupe.github.io/know-your-bundle", "ko": "ko25july.github.io/ko.js.org", + "ko.mobx": "cname.vercel-dns.com", // noCF + "ko.redux": "deminoth.github.io/redux", // noCF "koa-rest-api-boilerplate": "posquit0.github.io/koa-rest-api-boilerplate", "kobra": "johnsylvain.github.io/kobra", + "kodadot": "kodadot.github.io", + "kody": "thomasbrueggemann.github.io/kody", "kofiloop": "norech.github.io/KofiLoop", "koishi": "koishijs.github.io", + "kokkoro": "kokkorojs.github.io", "kokoro": "cool2645.github.io/kokoro", "kokoro-player": "cool2645.github.io/kokoro-player", "komada": "dirigeants.github.io/komada", + "komo": "jskull.github.io/komo", + "komps": "bemky.github.io/komps", + "konamicmd": "code-raisan.github.io/KonamiCommandJS", "konsumer": "konsumer.github.io", // noCF? (don´t add this in a new PR) "koolclash": "sukkaw.github.io/Koolshare-Clash", "koot": "cmux.github.io/koot", + "kotori": "biyuehu.github.io/kotori-bot", "koutla-swiss": "leny.github.io/koutla-swiss", - "kovart": "kovart.github.io/cv", "kowalski": "k0walslk1.github.io", "kra": "kra-framework.github.io/kra-suite", // noCF + "krds": "krds-community.github.io/krds-react", "kremling": "canopytax.github.io/kremling.js.org", + "ksharp": "konraaadcz.github.io/ksharp-web", "kshitij": "kshitij98.github.io", + "ksp": "keepsobp.github.io", "kst": "lucaelin.github.io/KST", // noCF "ktm": "developers-nepal.github.io/ktmjs", + "kucos": "kucosjs.github.io", + "kumeru": "ultirequiem.github.io/kumeru", + "kun": "lmk97.github.io/kun-docs", + "kunal": "kunalghosh02.github.io", + "kunkun": "smallkunkun.github.io", "kyoto": "kyotojs.github.io", "l2dwidget": "xiazeyu.github.io/live2d-widget.js-doc", - "lab": "labjs.netlify.com", + "lab": "labjs.netlify.app", "labelauty": "fntneves.github.io/jquery-labelauty", // noCF? (don´t add this in a new PR) + "labs": "cname.vercel-dns.com", // noCF + "labui": "ztl-uwu.github.io/Lab-Design-Guide", "lad": "ladjs.github.io/lad", "lambda": "lambdajs.github.io", // noCF? (don´t add this in a new PR) + "lambdalog": "kyleross.github.io/node-lambda-log", + "lan": "careteenl.github.io/lan", "lance": "lancepioch.com", + "landrielportafolio": "arielandriel30.github.io/landrielportafolio", + "lang": "iso-639.github.io/language-code", "languages": "rsamaium.github.io/Languages", + "lanye": "lanye.github.io", "larastrator": "the94air.github.io/larastrator", "lasers": "lukehorvat.github.io/need-more-lasers", "lass": "lassjs.github.io/lass", @@ -1023,148 +1758,258 @@ var cnames_active = { "latte": "tehsenaus.github.io/latte-js", "laubstein": "laubstein.github.io", // noCF? (don´t add this in a new PR) "laue": "qingwei-li.github.io/laue", - "lava": "palladium.github.io/Lava.js", + "lavaclient": "lavaclient.github.io", + "lavashark": "hmes98318.github.io/LavaShark", "laveesh": "laveesh.github.io", + "lazy": "gopirathod.github.io/lazy", "lazycipher": "lazycipher.github.io", + "lazycoder": "prasantdev.github.io/lazycoder", + "lazyload": "gyanprabhat7.github.io/LazyLoad.JS", + "lbox": "lbox-js.github.io", "lcookie": "lf112.github.io/lcookie", "ldf": "autplayed.github.io/ldf", + "ldo": "o-development.github.io/ldo.js.org", "le": "letui.github.io", - "leafless": "mofax.github.io/leafless", + "leaf": "5c46aa0430-hosting.gitbook.io", // noCF "lean-stack": "lean-stack.github.io", // noCF? (don´t add this in a new PR) - "leandro": "leandrowd.github.io", // noCF? (don´t add this in a new PR) - "learnathon": "learn-a-thon.netlify.com", + "leap-year": "ultirequiem.github.io/leap-year", + "learn": "in-tech-gration.github.io/LearnJavascript", + "learnathon": "learn-a-thon.netlify.app", "learngitbranching": "pcottle.github.io/learnGitBranching", + "learningenglish": "guilhermedelemos.github.io/Learning-English", + "learns": "cname.vercel-dns.com", // noCF "lee": "lee981265.github.io", + "leeks": "ohlookitsderpy.github.io/leeks.js", "leet": "leetcodes.github.io", + "leet-xt": "binbard.github.io/leet-xt", + "leetcode": "cname.vercel-dns.com", // noCF + "legendz": "botstudios.github.io/LEGENDZ", "lego": "polight.github.io/lego", "leipzig": "leipzigjs.github.io", // noCF? (don´t add this in a new PR) "lemn": "lemnjs.github.io/lemn", "leo": "leo66123.github.io", "leoj": "leoaj.github.io", // noCF? (don´t add this in a new PR) + "leoric": "cyjake.github.io/leoric", "lerna": "lerna.github.io/website", "lessmd": "linuxenko.github.io/lessmd", "leste": "atwood-cai.github.io/leste.js", // noCF? (don´t add this in a new PR) + "lete": "cname.vercel-dns.com", // noCF + "lev": "lev-savranskiy.github.io", "level": "xv700.github.io/level", "lf": "lf112.github.io", "lgs": "lgsturkiye.github.io/lgs", "li": "mattsimmons1.github.io/li", - "lifx": "fncxpro.github.io/lifx.js", - "light": "lightjs.netlify.com", + "libcord": "tovade.github.io/libcord", + "libcurl": "libcurl.pages.dev", + "libh": "ihasq.github.io/libh", + "libphonenumbers": "libphonenumbers.github.io", + "license-cop": "tobysmith568.github.io/license-cop", + "lifeisyoung": "lifeisyoung.github.io", + "light": "lightjs.netlify.app", "light-observable": "dmitry-korolev.github.io/light-observable", - "liguori": "liguori.github.io", // noCF? (don´t add this in a new PR) + "lightcord": "snazzah.github.io/Lightcord", + "lightimage": "jwchan1996.github.io/lightimage.js", "liike": "liikejs.github.io/Liike", "likebeta": "likebeta.github.io/likebeta.js.org", - "liljs": "liljs.netlify.com", + "liljs": "liljs.netlify.app", + "lim": "lim.netlify.app", "limitrr": "eddiejibson.github.io/limitrr", + "linemapper": "noobishsvk.github.io/LineMapper", "lineup": "lineupjs.github.io", + "lineup-lite": "lineup-lite.netlify.app", "lineupengine": "lineupjs.github.io/lineupengine.js.org", "ling": "wangziling.github.io", "linghucong": "jiji262.github.io", - "lingui": "lingui.github.io/js-lingui", + "lingui": "cname.vercel-dns.com", // noCF + "link-styler": "sheikhoo.github.io/link-styler", + "linkcord": "nils-afk.github.io/linkcord.js.org", // noCF + "linkify": "hypercontext.github.io/linkifyjs", + "linksharer": "linksharer.github.io/linksharer.js.org", + "lion": "lion-web.netlify.app", + "lips": "jcubic.github.io/lips", + "lipsum": "llxlr.github.io/lipsum.js", + "liquid-ajax-cart": "evgeniymukhamedjanov.github.io/liquid-ajax-cart", + "liquivelte": "liquivelte.github.io/docs", + "listenin": "cname.vercel-dns.com", // noCF + "lister": "jpbulman.github.io/lister", + "listore": "yieldray.github.io/listore", + "lite-web-server": "chasyumen.github.io/lite-web-server", + "litecanvas": "litecanvas.github.io", "litedom": "mardix.github.io/litedom", // noCF + "lithium": "ranjithrd.github.io/lithium", + "littlefoot": "goblindegook.github.io/littlefoot", + "liudun": "haveataste.github.io/liudun", "liuence": "lxyzai.github.io/liuence", + "liunian": "liunnn1994.github.io", + "live-editor": "geard-dev.github.io/web-based-live-code-editor", "liveflow": "hasharray.github.io/liveflow.js", "livenotif": "siffreinsg.github.io/livenotif", + "livevalidate": "thedhanawada.github.io/LiveValidateJS", + "lizzy": "stoyan.github.io/Lizzy.js", + "lmadactyl": "hosting.gitbook.io", // noCF "lmajercik": "meiercheek.github.io", - "lmk": "limengke123.github.io/newBlog", + "localize": "localize.github.io", "localsync": "noderaider.github.io/localsync", // noCF? (don´t add this in a new PR) + "loginlock-portfolio": "chucky22mendoza.github.io/loginlock", "logo": "js-org.github.io/logo", + "loh": "codingstudios.github.io/loh", "loki": "oblador.github.io/loki", "lol": "xcss.github.io/lol", + "loli": "tkzcm.github.io/loli", "lombok": "lombokjs.github.io", + "lona": "lonadb.github.io/Website", + "london": "londonjs.github.io", "loog": "israelroldan.github.io/loog", "lostyle": "rtsao.github.io/lostyle", "lottiefy": "pd4d10.github.io/lottiefy", + "loxt": "loxt.netlify.app", "lps": "mauris.github.io/lps.js.org", + "lrclib": "igorwastaken.github.io/lrclib-api", "lribeiro": "lmribeiro.github.io", "ls": "links-js.github.io", + "lt": "cname.vercel-dns.com", // noCF + "lua2js": "xiangnanscu.github.io/lua2js", // noCF + "lucia": "lucia.netlify.app", + "luciascript": "luciascript.netlify.app", "lucy": "lucy-bot.github.io", - "luisfelipe": "luisfelip3.github.io", - "lukks": "lukks.github.io/page", + "lukemetoki": "luke2m.github.io", + "lume.shiraha": "importantimport.github.io/lume_theme_shiraha", // noCF + "lumi": "furioustsunami.github.io/lumijs", + "lumpia": "lumpiajs.netlify.app", + "lunisolar": "waterbeside.github.io/lunisolar-docs", + "lunox": "kodepandai.github.io/lunox", + "luzc": "lucianing.github.io/notes", + "lviv": "lvivjs.github.io/lviv", "lvp": "luzhenqian.github.io/lvp.js", - "lwd-db": "dreamingbot.github.io/Login-With-Discord-DB", - "lx": "blleng.github.io/lx", - "lychee": "Artificial-Engineering.github.io/lycheeJS-website", + "lwjerri": "lwjerri.github.io", + "lx": "blleng.github.io/lx-test", + "lychee": "cookiengineer.github.io/lycheeJS-website", "lyra": "amansahil.github.io/lyra.js.org", + "lyz": "lihawhaw.github.io/lyzjs", "lzbible": "edwinyosorahardjo.github.io/lzbible", "m01i0ng": "m01i0ng.github.io", "m8bot": "mapreiff.github.io/m8-bot-site", - "ma124": "ma124.netlify.com", + "ma124": "ma124.netlify.app", + "macaron": "macaron-css.github.io/macaron", "machinelearning": "marink.github.io/machinelearning", + "maclary": "maclary.github.io/maclary", "macosnotif": "mattipv4.github.io/macOSNotifJS", + "mad": "madindx.github.io/mad", "madankumar": "jmadankumar.github.io", + "madebyzen": "mzaini30.github.io/madebyzen", + "madewithdativejs": "madewithdativejs.github.io", + "magickwand": "mmomtchev.github.io/magickwand.js", + "magidoc": "magidoc-org.github.io/magidoc", "magnet": "magnetjs.github.io/Magnet", // noCF? (don´t add this in a new PR) - "mahdyar": "mahdyar.github.io/mahdyar.js.org", "mahmoud": "mahmoud-sagharjoughi.github.io/mahmoud", - "mailgo": "mailgo.netlify.com", // noCF + "maid": "maidjs.github.io", + "mailbox": "vsdparibas.github.io/mailboxjs-doc", "majestic": "moityjs.github.io/majestic", "maker": "microsoft.github.io/maker.js", "makes": "makesjs.github.io", "mali": "malijs.github.io", + "mangascrape": "tzurs11.github.io/MangaScrape", "manic": "manicjs.github.io", - "manu": "botsdemanu.github.io/manu", - "manual.bluelightos": "hosting.gitbook.com", + "mansiart": "mansiart.github.io/mansiart", + "manual.bluelightos": "hosting.gitbook.com", // noCF "manytimepad": "dipanshkhandelwal.github.io/ManyTimePad", "mapa-cultura": "opensas.gitlab.io", + "mapblockly": "mapblockly.github.io", + "mapinventor": "mapinventor.github.io", + "mapmyworld": "mapmyworld.github.io", "mappa": "cvalenzuela.github.io/Mappa", + "mapsrc": "indus.github.io/mapsrc", "marble": "jsguy.github.io/marble", + "marcelo": "marcelooggero.github.io/bootstrap", + "mareact": "ipudu.github.io/mareact", + "mariateresazamoragomez": "josecarloszamoragomez.github.io/Maria-Teresa-Zamora-G-mez", + "maridreycupcakes": "danyflores.github.io/MariDrey-CupCakes", "marie": "marie-js.github.io/MARIE.js", + "marionette": "marionettejs.github.io/marionettejs.com", "mark": "henry-luo.github.io/mark", - "markbox": "markbox.netlify.com", + "markbox": "markbox.netlify.app", "markdown-notepad": "jz222.github.io/markdown-notepad", "markdownify": "amitmerchant1990.github.io/electron-markdownify", - "marked": "markedjs.github.io/marked", + "marked": "cname.vercel-dns.com", // noCF + "markliu": "markliuyuxiang.github.io", "markmap": "gera2ld.github.io/markmap-lib", "markmsmith": "markmsmith.github.io", "markvis": "geekplux.github.io/markvis", "markvis-editor": "geekplux.github.io/markvis-editor", + "mars": "marswong.github.io/blog", "martin": "martinbutler.github.io", // noCF? (don´t add this in a new PR) "martingollogly": "martingollogly.github.io", // noCF? (don´t add this in a new PR) "marxist": "wuz.github.io/marxistjs", "masha": "smarttelemax.github.io/MaSha", + "massroom": "massroom.github.io", + "master-portfolio": "vimalverma558.github.io/Master-Portfolio", + "mate": "theinternetfolks.github.io/mate", "materialish": "jamesplease.github.io/materialish", "materialize-bootbox": "iqbalfn.github.io/materialize-bootbox", + "mathflow": "mathflowjs.github.io", + "matrix": "crashmax-dev.github.io/matrix-canvas", "matrix-rref-solver": "arisweedler.github.io/matrix-rref-solver", "matters2ipfs": "contributionls.github.io/matters2ipfs", - "matthias-schuetz": "matthias-schuetz.github.io", // noCF? (don´t add this in a new PR) "mauricio": "mauricionobrega.github.io/www", "max": "toorusr.github.io/max.js.org", "maxnachlinger": "maxnachlinger.github.io", // noCF? (don´t add this in a new PR) "maxtracking": "maxtracking.github.io", // noCF? (don´t add this in a new PR) + "maxvalid": "techmonowar.github.io/maxvalid", + "maze95": "maze95.github.io", "mc": "magicarbon.github.io/mc", // noCF? (don´t add this in a new PR) - "mcul": "teamtofu.github.io/mcul", + "mca": "lem0nb.github.io/Minecraft_Auto_Builder", + "mcd": "n9gc.github.io/mcdjs", + "mcfly": "mcfly-js.netlify.app", + "mctrl": "cname.vercel-dns.com", // noCF, + "mcul": "russellsteadman.github.io/mcul", + "md": "cname-china.vercel-dns.com", // noCF + "md5": "cname-china.vercel-dns.com", // noCF + "mdbf-css": "more-beautiful-div-framework.github.io", + "mdcdev": "galleniz.github.io/mdcdev.js", "mde": "lukehorvat.github.io/mde-soundboard", + "mdxe": "cname.vercel-dns.com", // noCF "mechan": "dusterthefirst.github.io/mechan.js", "medan": "medan-js.github.io", // noCF "media": "tobiasthaden.github.io/media.js", "media-style-palette": "rikakomoe.github.io/Media-Style-Palette", "mediainfo": "buzz.github.io/mediainfo.js", + "medicus": "arthurfiorette.github.io/medicus", "medit": "echosoar.github.io/medit", + "medium": "factmaven.github.io/medium.js", "medium-converter": "gunar.github.io/medium-converter", // noCF "meed": "pinjasaur.github.io/meed", - "megacode18": "megacode18.github.io", + "mega": "qgustavor.github.io/megajs-docs", + "megdb": "megalithoffical.github.io", "meiosis": "foxdonut.github.io/meiosis", // noCF? (don´t add this in a new PR) "melies-hugo": "cristinafsanz.github.io/melies-hugo", "melody": "trivago.github.io/melody-web", - "memento": "jeanfortheweb.gitbooks.io/memento", + "membean": "redyetidev.github.io/membean", + "memer-api": "cname.vercel-dns.com", // noCF + "memoz": "60-min-code.github.io/memoz", + "mengd": "cname.vercel-dns.com", // noCF + "menghafalquran": "mzaini30.github.io/menghafal-quran", + "menu": "cohenerickson.github.io/menu", + "meow": "meow-js.github.io", "mercury": "henryqw.github.io/mercury", "merkletree": "miguelmota.github.io/merkletreejs", "merkur": "mjancarik.github.io/merkur", - "mern": "IamMohaiminul.GitHub.io/MERNjs", + "mern": "iammohaiminul.github.io/MERNjs", "mert": "mert574.github.io", "mesh": "crcn.github.io/mesh.js.org", // noCF? (don´t add this in a new PR) "meshesha": "meshesha.github.io", "metadata": "oknosoft.github.io/metadata.js", "metascraper": "microlinkhq.github.io/metascraper", "meth": "meth-meth-method.github.io/meth", - "meto": "misly16.github.io/metowebsite123", + "metho": "jonrandy.github.io/metho", "metools": "yimogit.github.io/metools-plugin", - "meyda": "meyda.github.io", + "meyda": "meyda.github.io", // noCF "mf": "awto.github.io/mfjs-compiler", // noCF? (don´t add this in a new PR) "mhsupport": "thatonetqnk.github.io/MHSupport", - "mhy": "hosting.gitbook.com", + "mhy": "hosting.gitbook.com", // noCF "mi": "stevenjoezhang.github.io", + "micanto": "micanto-music.github.io/micanto", "michaelfarnik": "michaloslav.github.io/MichaelFarnik", + "microdoc": "maxmilton.github.io/microdoc", "microfeedback": "microfeedback.github.io", "microlink": "microlinkhq.github.io/microlinkjs", "mics": "download.github.io/mics", @@ -1172,124 +2017,199 @@ var cnames_active = { "miguelsr": "miguelsr.github.io", // noCF? (don´t add this in a new PR) "mikado": "nextapps-de.github.io/mikado", "milesgitgud": "milesgitgud.github.io/homepage", + "militia": "militia21.github.io/militia", + "million": "cname.vercel-dns.com", // noCF "mimeo": "mimeojs.github.io", "mimic": "500tech.github.io/mimic", - "mina": "CenturyUna.github.io/mina", + "mina": "centuryuna.github.io/mina", "mindyourtime": "michaloslav.github.io/Mind-Your-Time", - "minecraft-data.prismarine": "prismarinejs.github.io/minecraft-data", - "mineflayer.prismarine": "prismarinejs.github.io/mineflayer", + "mine": "minenode.github.io", "minehutsupport": "baibeebambi.github.io/minehutsupport", + "minerva-ui": "cname.vercel-dns.com", // noCF "minesweeper": "derflatulator.github.io/minesweeper", "mingyi": "liangmingyi.github.io", // noCF? (don´t add this in a new PR) + "minich": "anventech.github.io/minich-docs", "minidrone": "mechazawa.github.io/minidrone-js", "minify": "minify-js.github.io", "minigrid": "henriquea.github.io/minigrid", // noCF? (don´t add this in a new PR) - "minijoshua": "joshualovescode.github.io/MiniJoshua-Website", + "minimizedb": "acarrr.github.io/minimizedb", "mininote": "htdt.github.io/mininote", + "minirouter": "milio48.github.io/minirouter.js", + "minivaline": "minivaline.github.io", "miny": "pablopunk.github.io/miny", - "mirrors": "jamesyangget.github.io/mirrors", + "mirage": "camwang.github.io/mirage", + "mirror": "hmsjy2017.github.io/Google-Mirrors", + "mirrors": "llxlr.github.io/mirrors", + "miru": "miru-project.github.io/docs", "mis101bird": "mis101bird.github.io", // noCF? (don´t add this in a new PR) - "miscord": "bjornskjald.github.io/miscord-website-redirect", + "mission-control": "capevace.github.io/mission-control", "miteshtagadiya": "miteshtagadiya.github.io/miteshtagadiya", - "mithril": "mithriljs.github.io/mithril.js", + "mithril": "mithriljs.github.io/docs", + "mithril-by-examples": "tbreuss.github.io/mithril-by-examples", "mithril-ja": "shibukawa.github.io/mithril-ja", // noCF? (don´t add this in a new PR) "mitu": "godow.github.io/mitu", - "mjx": "mjx-dev.github.io", + "mixery": "nahkd123.github.io/Mixery", + "mjy": "majianyu2007.github.io", "mm": "1ocalhost.github.io/mm", "mmcq": "nikola.github.io/MMCQ", // noCF? (don´t add this in a new PR) - "mnmlcss": "barelyhuman.github.io/mnml.css" + "mmzdupz": "mmzdupz.github.io", + "mnmlcss": "barelyhuman.github.io/mnml.css", "mo": "mirmousaviii.github.io/mo", - "mobx": "mobxjs.github.io/mobx", - "mobx-keystone": "mobx-keystone.netlify.com", - "mobx-react": "mobx-react.netlify.com", + "mobbler": "megaemce.github.io/mobbler", + "mobi": "mobidots.github.io", + "mobx": "mobx-js-org.onrender.com", // noCF + "mobx-bonsai": "mobx-bonsai.netlify.app", + "mobx-keystone": "mobx-keystone.netlify.app", "mobx-state-tree": "mobxjs.github.io/mobx-state-tree", + "mocha1995": "doodlewind.github.io/mocha1995", "mock-cmdr": "ncjones.github.io/mock-cmdr", "mock-middleware": "luobotang.github.io/mock-middleware", "mockjs-lite": "52cik.github.io/mockjs-lite", // noCF - "mockyeah": "mockyeah.netlify.com", + "mockyeah": "mockyeah.netlify.app", "modbot": "modbotjs.github.io", + "moddy": "cutiecat6778.github.io/moddy", + "model": "xiangnanscu.github.io/model", // noCF + "modern": "modern-js-dev.github.io", + "modjool": "cname.vercel-dns.com", // noCF + "modmail": "botstudios.github.io/modmail.js", "modofun": "modofunjs.github.io/modofun", "modoki": "araozu.github.io/modoki", - "modulajs": "modulajs.netlify.com", + "modrinth": "rubybb.github.io/modrinth.js.org", + "modulajs": "modulajs.netlify.app", + "modular": "jpmorganchase.github.io/modular", "modv": "2xaa.github.io/modV", "moeditor": "moeditor.github.io", - "moehou": "moehou.coding.me", //noCF + "mog": "mogland.github.io/mog-docs", "mog-script": "mog-script.github.io", "mohamad": "imohamad.github.io", + "mohi": "mohijalili.github.io", "mohit": "mohitgarg.github.io", "mohitgupta": "mohitgupta8888.github.io/mohitgupta", "mojiscript": "joelnet.github.io/MojiScript", "mokunshao": "mokunshao.github.io", "mol": "eigenmethod.github.io/mol", // noCF + "moloko": "molokojs.netlify.app", "molti": "moltijs.github.io/molti", "mom": "momjs.github.io/mom", "momentum": "wemakeweb.github.io/momentum", // noCF? (don´t add this in a new PR) + "monaco-tailwindcss": "monaco-tailwindcss.netlify.app", + "monaco-unified": "monaco-unified.netlify.app", + "monaco-yaml": "monaco-yaml.netlify.app", "monkberry": "monkberry.github.io", "mono": "mono-js.github.io/mono", + "monocle": "cname.vercel-dns.com", // noCF + "monopay": "alitnk.github.io/monopay", "montage": "montagejs.github.io", + "moonlightdb": "ff8204bc04-hosting.gitbook.io", // noCF + "moonlink": "apex-loadbalancer.netlify.app", // noCF "moose": "mustpax.github.io/moose", "moro": "omidfi.github.io/moro", "morocco": "moroccojs.github.io", + "morse": "the-silver-project.github.io/morse", + "mosaic": "tilework.github.io/mosaic.js.org", + "mp": "cncdn.github.io", "mp3tag": "eidoriantan.github.io/mp3tag.js", "mpe": "weareroli.github.io/mpejs", // noCF? (don´t add this in a new PR) + "mrinjamul": "mrinjamul.github.io/mrinjamul.js.org", + "mrm": "mrmjs.netlify.app", "mrn": "binggg.github.io/mrn", // noCF? (don´t add this in a new PR) "mrpluto": "mrpluto.github.io", "mrwanashraf": "mrwanashraf.github.io", "mscgen": "sverweij.github.io/mscgen_js", + "msemoji": "dellzhackintosh.github.io/msemoji", "msolers": "msolers.github.io/bloghugo", "msp430": "mazko.github.io/MSP430.js", + "mtproto-core": "alik0211.github.io/mtproto-core-website", "mubaidr": "mubaidr.github.io", + "muc": "jsmuc.github.io", + "muiplayer": "muiplayer.github.io", + "mujin": "mujin669.github.io", "multiple": "nexts.github.io/Multiple.js", + "multiversus": "cname.vercel-dns.com", // noCF + "munhumutapaalpha": "munhumutapaalpha.github.io/wallet", "murajaah": "mzaini30.github.io/murajaah-js", - "murder": "rolandpoulter.github.io/murder", // noCF? (don´t add this in a new PR) + "murathalitsever": "murathalitsever.github.io", "murmansk": "interfluve.github.io/Murmansk", + "music": "ronyeh.github.io/music", + "musicca": "musiccajs.github.io/website", + "musickit": "exerra.github.io/node-musickit-api", // noCF + "musicord": "arthurleo13.github.io/musicord-documentation", + "mutable": "mutable-tools.github.io/MutableJS", + "mutative": "unadlib.github.io/mutative", "muto": "booleanapp.github.io/elastic-muto", + "muxfm": "muxfm.github.io/docs", "mvc": "morozovsk.github.io/mvc", // noCF "mw": "agauniyal.github.io/mw", - "my-app": "nirrius.github.io/my-app", + "mwap": "jacob-ebey.github.io/mwap", + "mx-space": "mx-space.github.io/docs", // noCF + "my-app": "osidecrotchets.github.io/my-app", "my-server": "nirrius.github.io/my-server", + "mylas": "raouldeheer.github.io/Mylas", "mysketch": "dipanshkhandelwal.github.io/MySketch", - "mythbusters": "mythbustersjs.netlify.com", + "mythbusters": "cname.vercel-dns.com", // noCF "myurl": "marvnet.github.io/myurl", "mzaini30": "mzaini30.github.io", "mzplayer": "prince3661.github.io/Mzplayer", "n": "cyb.github.io/n", "nabin": "nabin6246.github.io", - "naja": "jiripudil.github.io/Naja", + "nacl-check": "magnusmarx.github.io/NaCL", + "naja": "naja-js.github.io/naja", + "namaste": "namaste-duniya.github.io/js", "name-my-colors": "domcoleman.github.io/name-my-colors", "namelessman": "namelessman.github.io", "nanimation": "imthenachoman.github.io/nAnimation", // noCF? (don´t add this in a new PR) + "nano": "planet-free.github.io/nano", "nanoexpress": "hosting.gitbook.com", + "nanoweb": "tbo.github.io/nanoweb", "naseem": "naseemali925.github.io/about-me", - "nasix": "nasixjs.netlify.com", // noCF + "nashi": "cname.vercel-dns.com", // noCF "nastya-piu": "nastya-piu.github.io", + "nativeflow": "nativeflowteam.github.io/documentation", "nativemodels": "prefinem.github.io/nativemodels", "naughtychecker": "gautamkrishnar.github.io/naughtychecker.js", "nautil": "tangshuang.github.io/nautil", "nautilus": "ignigena.github.io/nautilus", + "nave": "naveteam.github.io/nave", + "naveenjujaray": "naveenjujaray.github.io/blog", "nbabot": "eliotchignell.github.io/NBABot", "ncub8": "ncub8.github.io", // noCF? (don´t add this in a new PR) + "ncx": "cname.vercel-dns.com", // noCF "neaps": "neaps.github.io", "nearley": "kach.github.io/nearley", - "nectar": "nectarjs.github.io/nectarjs", - "nemaniarjun": "nemaniarjun.github.io", + "nectar": "cname.vercel-dns.com", // noCF + "nector": "cname.vercel-dns.com", // noCF + "nefter": "nefter.github.io", "nemo": "paypal.github.io/nemo", // noCF? (don´t add this in a new PR) "neo4": "janpeter.github.io/neo4js", + "neox": "neoxn3il.netlify.app", + "nested-error": "ultirequiem.github.io/nested_error", "neteasecloudmusicapi": "w4ctech.github.io/NeteaseCloudMusicApi", - "netology-group": "netology-group.github.io", - "neurax-api": "configneurax.netlify.com", - "neuro": "neurojs.netlify.com", + "neurax-api": "configneurax.netlify.app", + "neureact": "kasmirawijayathunga.github.io/neureact", + "neuro": "neurojs.netlify.app", "neutralino": "neutralinojs.github.io", - "neutrino": "neutrinojs.netlify.com", // noCF "newbyte": "newbytee.github.io/newbyte", + "newcar": "newcar-docs.netlify.app", + "newspool": "68b0dfd0-2b8d-4335-9da2-5653f09d2d34.id.repl.co", // noCF + "newton": "caracal7.github.io/newton.js", "newyear": "dndrbots.github.io/new_year_counter", + "nexbase-core": "petrunov.github.io/nexbase-core", "next": "zeit.github.io/next-site", - "nexus": "nexusjs.netlify.com", + "next-admin": "cname.vercel-dns.com", // noCF + "next-auth": "alias.zeit.co", // noCF + "next-crud": "next-crud.netlify.app", + "next-qrcode": "next-qrcode.github.io", + "next-redux-cookie-wrapper": "bjoluc.github.io/next-redux-cookie-wrapper", + "next-share": "next-share.github.io", + "next.awesome-vue": "awesome-vue.netlify.app", // noCF + "nextkit-fetcher": "ultirequiem.github.io/nextkit-fetcher", "nflow": "nflow-js.github.io", // noCF? (don´t add this in a new PR) + "nfui": "no-frills-ui.netlify.app", "nfwyst": "nfwyst.github.io", "ng-app": "zackschuster.github.io/ng-app", "ng-chess": "kaykayehnn.github.io/ng-chess", "ng-dux": "mister-what.github.io/ngDux", + "ng-monaco-editor": "alauda.github.io/ng-monaco-editor", "ng-wig": "stevermeister.github.io/ngWig", // noCF? (don´t add this in a new PR) "ngbook": "ngbook.github.io", "ngirc": "ngirc.github.io/ng-irc", // noCF @@ -1297,299 +2217,488 @@ var cnames_active = { "ngspice": "42ua.github.io/ngspice.js", "ni": "js-ni.github.io/ni", "nic": "nic.github.io", - "nick": "nmai.github.io", // noCF? (don´t add this in a new PR) - "nikita": "adaltas.github.io/node-nikita-docs", + "nice": "gcsboss.github.io/nice", + "nicetix": "indus.github.io/nicetix", + "nightcord": "rellylegend.github.io/nightcord", + "nikita": "adaltas.github.io/node-nikita", "nikmartin": "nikmartin.github.io", + "nima": "nimaw.github.io", "ninh": "reeganexe.github.io/ninh", "nintenbot": "nintenzone.github.io/NintenBot", + "niplayer": "niyuancheng.github.io/NiPlayerDocs", "nite": "manvalls.github.io/nite", - "noblox": "suufi.github.io/noblox.js", + "nitrate": "ranjithrd.github.io/nitrate", + "nnmap": "marzavec.github.io/nnmap.js", + "no-pry": "zenyanle.github.io/node-unblocker", + "nobelium": "cname.vercel-dns.com", // noCF + "noblox": "noblox.github.io/noblox.js", "nod": "diegohaz.github.io/nod", "node": "nodejs.github.io/node.js.org", "node-atlas": "haeresis.github.io/NodeAtlas", + "node-file-router": "cname.vercel-dns.com", // noCF "node-slate": "center-key.github.io/node-slate", + "node-system-stats": "joniii11.github.io/node-system-stats", + "node-vimeo": "sidisliveyt.github.io/node-vimeo", + "nodebook": "hosting.gitbook.io", "nodegarden": "pakastin.github.io/nodegarden", "nodehawk": "samrith-s.github.io/nodehawk", "nodeppt": "ksky521.github.io/nodeppt", "noderize": "cretezy.github.io/noderize", - "noflux": "nofluxjs.gitbooks.io/noflux", + "noembed": "gilzonme.github.io/noembed", + "noflux": "hosting.gitbook.io", // noCF + "nomic": "basicer.github.io/nomic.js-ui", "noo": "uyouthe.github.io/noo", "noobscroll": "arguiot.github.io/NoobScroll", - "nota": "baleeds.github.io/nota", + "nord": "anandchowdhary.github.io/nord.js", + "nostalgist": "arianrhodsandlot.github.io/nostalgist", + "nostr": "nuzulul.github.io/NOSTRJS", "notasdeprogramador": "hugoroca.github.io/notasdeprogramador", + "notebook": "wugenqiang.github.io/NoteBook", "noted": "carter-slade.github.io/Noted-", // noCF? (don´t add this in a new PR) "notepad": "amitmerchant1990.github.io/notepad", "nothing": "cbtak.github.io/nothing", "notibar": "duyetdev.github.io/notibar.js", - "npkill": "voidcosmos.github.io/npkill", + "notion-cms": "cname.vercel-dns.com", // noCF + "nougat": "nougatlang.github.io", + "novasheets": "novasheets.netlify.app", + "now": "leodog896.github.io/jsnow", + "noypi": "noypi.alwaysdata.net", + "npkill": "voidcosmos.github.io/npkill-web", + "nplayer": "woopen.github.io/nplayer", + "npm-card": "ultirequiem.github.io/create-npm-card", + "npmdocs": "cname.vercel-dns.com", // noCF "npmer": "rumkin.github.io/npm-watch", + "npmgraph": "cname.vercel-dns.com", // noCF + "nrgy": "mnasyrov.github.io/nrgy", "nsp": "hanul.github.io/NSP", // noCF? (don´t add this in a new PR) "nsptiles": "imthenachoman.github.io/nSPTiles", // noCF? (don´t add this in a new PR) - "nuclear": "nukeop.github.io/nuclear", - "null": "false.netlify.com", - "numberproto": "vfdan.github.io/NumberProto.js" - "nut": "nut-project.netlify.com", + "nsw-coronavirus": "maxgherman.github.io/nsw-coronavirus", + "nugu": "vietcode.github.io/nugu", + "null": "false.netlify.app", + "num2words": "mcnagynorbi.github.io/num2words", + "numberproto": "vfdan.github.io/NumberProto.js", + "numtoword-cli": "infysumanta.github.io/numtoword-cli", + "nut": "nut-project.netlify.app", "nuxt-fluent-bootstrap": "disjfa.github.io/nuxt-fluent-bootstrap", - "nuxtdoc": "hopeful-hoover-d87dd1.netlify.com", + "nuxtdoc": "hopeful-hoover-d87dd1.netlify.app", "nva": "ali322.github.io/nva", - "nxd": "niuxvdong.github.io", "nxse": "nxse.github.io", + "nyax": "springnyan.github.io/nyax", "nyc": "nycjsorg.github.io/nyc", "nyr": "suriyaakudoisc.github.io/NYR", "oak": "donn.github.io/Oak.js", + "obfuscate": "complifyjs.pages.dev", + "object-gui": "matteobruni.github.io/object-gui", + "objectid": "the-silver-project.github.io/objectid", + "objectkv": "itsag.github.io/objectkv", "objectmodel": "sylvainpolletvillard.github.io/ObjectModel", // noCF? (don´t add this in a new PR) "observable-hooks": "crimx.github.io/observable-hooks", + "octofetch": "maartenvn.github.io/OctoFetch", "odararmy": "odararmy.github.io", "odin": "foxifyjs.github.io/odin", "oec": "crellison.github.io/oec", + "oem": "linttrapmedia.github.io/oem", "of": "r37r0m0d3l.github.io/of", "officetohtml": "meshesha.github.io/officetohtml", + "offreddit": "pantheonlbs.github.io/offreddit", "oguz": "okb1100.github.io", + "oh-vue-icons": "oh-vue-icons.netlify.app", "ohmy": "mountainwang.github.io/ohmy", "oib": "andreicek.github.io/oib.js", "oktay": "98oktay.github.io/oktaybaskus", + "olaindex": "wangningkai.github.io/OLAINDEX", "olivia": "oliviachang29.github.io", + "olova": "cname.vercel-dns.com", // noCF "omaha": "omahajs.github.io", "omega": "jczimm.github.io/omega", // noCF? (don´t add this in a new PR) "omer": "omeroot.github.io", // noCF? (don´t add this in a new PR) "omg": "pengjiyuan.github.io/omg", "omid": "omidnikrah.github.io/omid", - "onebang": "teamtofu.github.io/onebang", - "onefx": "puncsky.github.com/onefx-home", + "omniutils": "cname.vercel-dns.com", // noCF + "onefx": "puncsky.github.io/onefx-home", + "onemsg": "7f4243c7-d171-416a-ad3d-19ba04fe36f5.id.repl.co", // noCF "ongaku": "anshuman-verma.github.io/ongaku", + "onii": "oniijs.github.io/onii", + "onlang": "rajatasusual.github.io/on-lang", + "oox": "lipingruan.github.io/oox", + "opcommands": "02550ce547-hosting.gitbook.io", // noCF + "open-next": "serverless-stack.github.io/open-next", + "openauth": "openauthjs.github.io/openauth", + "openkey": "microlinkhq.github.io/openkey", + "opennext": "opennextjs.github.io/docs", "openrecord": "philwaldmann.github.io/openrecord", + "opentrivia-guide": "turtlepaw.github.io/trivia-docs", "opentype": "nodebox.github.io/opentype.js", - "opxop": "opxop.github.io", - "orango": "roboncode.github.io/orango", + "opmongo": "sanikava.github.io/OpMongo", + "orbiton": "orbitonjs.github.io", + "order-ai": "orderai.onrender.com", // noCF "orga": "orgapp.github.io/orgajs", - "organizeapi": "zachary-murphy.gitbooks.io/organizeapi-docs", "origami": "origami-cms.github.io/cms", - "os": "91.247.228.125", // noCF + "os-gui": "1j01.github.io/os-gui", "osagai": "henriquelimas.github.io/osagai", "oscillator": "lukehorvat.github.io/super-oscillator", + "oslo": "pilcrowonpaper.github.io/oslo", "osom": "kikobeats.github.io/osom", + "ot": "otjs-docs.github.io", "otimizacao": "jmmccota.github.io/Otimizacao", - "outdoors": "mrdatastorage.github.io/outdoors.js", + "otp": "60-min-code.github.io/gen-totp", + "ourcord": "ourcord.netlify.app", + "outrite": "outrite.github.io/outrite.js.org", + "overtone": "biologyscience.github.io/overtone", "overtrack": "aidant.github.io/overtrack.js", + "ovo": "ovojs.github.io/OvO", + "oxi": "cname.vercel-dns.com", // noCF + "oz": "openzagreb.github.io", "p2psc": "kognise.github.io/p2psc", "p3terx": "p3terx.github.io/P3TERX", "p7e4": "p7e4.github.io", "packit": "pouya-eghbali.github.io/packit", + "pacman": "8tentaculos.github.io/jsPacman", "pad": "ebraminio.github.io/pad.js", // noCF? (don´t add this in a new PR) "pad-project": "adaltas.github.io/node-pad-docs", + "padmemesamidala": "padmemesamidala.github.io/PadmemesAmidalaWeb", + "pagelike": "iamanishroy.github.io/pagelike", "pageobject": "clebert.github.io/pageobject", - "pagination": "superRaytin.github.io/paginationjs-site", // noCF + "pagetalk": "seatwork.github.io/pagetalk", + "pagination": "superraytin.github.io/paginationjs-site", // noCF + "pagination-djs": "imranbarbhuiya.github.io/pagination.djs", + "paint": "christianliebel.github.io/paint", + "pairings": "davebc.github.io/pairings", "palette": "pakastin.github.io/palette", + "pam": "pambot.netlify.app", "pamatcher": "pmros.github.io/pamatcher", // noCF? (don´t add this in a new PR) + "panda": "theaarushgupta.github.io/panda", "pangkeyd": "pangkeyd.github.io", "pantarei": "pantareijs.github.io/pantarei.js.org", "panza": "panza-org.github.io/panza-docs", // noCF - "paperclip": "crcn.github.com/paperclip.js.org", // noCF? (don´t add this in a new PR) - "paraiba": "paraibajs.github.io", // noCF? (don´t add this in a new PR) + "papanasi": "witty-plant-07a086e03.1.azurestaticapps.net", // noCF + "paperclip": "crcn.github.io/paperclip.js.org", // noCF? (don´t add this in a new PR) + "papyrus": "papyrusjs.netlify.app", "parallel": "parallel-js.github.io/parallel.js", "parametric-svg": "parametric-svg.github.io", // noCF? (don´t add this in a new PR) "parkrun": "prouser123.github.io/parkrun.js", - "particles": "matteobruni.github.io/tsparticles", + "parley": "tomas-wrobel.github.io/parley", + "parrot": "pengudevelopment.github.io/parrot.js", + "parse5": "inikulin.github.io/parse5", + "particles": "tsparticles.github.io/website", + "party": "yiliansource.github.io/party-js", "pas-ce-soir": "oldergod.github.io/pas-ce-soir", "passepartout": "falkz.github.io/passepartout.js.org", - "passwords": "sawyerbx.github.io/pw", + "passkeys": "beyondcodebootcamp.github.io/passkeys", + "passphrase": "therootcompany.github.io/passphrase.js", "pastate": "birdleescut.github.io/pastate", + "paste": "cname.vercel-dns.com", // noCF "pastebin-alert": "ramadhanamizudin.github.io/pastebin-alert.js", // noCF? (don´t add this in a new PR) "pathtrace": "kovacsv.github.io/WebGLPathTrace", // noCF? (don´t add this in a new PR) + "pawnote": "literateink.github.io/Pawnote", "pax": "nathan.github.io/pax", + "payment-crypto": "kiogia.github.io/payment-crypto", + "pc": "jeffpar.github.io/pc", + "pcl": "cname.vercel-dns.com", // noCF "pdf": "iamcristye.github.io/PDF", "pdf-lib": "hopding.github.io/pdf-lib", // noCF + "pdfium": "cname.vercel-dns.com", // noCF "pdfutils": "gottox.github.io/node-pdfutils", // noCF? (don´t add this in a new PR) "pdp-elements": "go4cas.github.io/pdp_elements", // noCF? (don´t add this in a new PR) - "pea": "pea-team.github.io", - "pearl": "adamshurson.github.io/pearl", + "pecis": "techpot-studio.github.io/Pecis", + "pee": "enbyautumn.github.io/pee.js", "peekaboo": "nadavspi.github.io/peekaboo.js", + "pegasusdb": "tatsumaki-coderr.github.io/pegasus.db", "pegboard": "mplewis.github.io/pegboard", "pekanbaru": "pekanbarujs.github.io", "pencil": "pencil-js.github.io/website", "penguins": "luisvallejomohl.github.io/Penguins.js", "penn-sdk": "pennlabs.github.io/penn-sdk-node", // noCF? (don´t add this in a new PR) + "penpow": "penpow.github.io", "pentris": "justinjc.github.io/pentris2", // noCF? (don´t add this in a new PR) - "perguth": "perguth.github.io", - "perilla": "zhangzisu.github.io/perilla", + "pereira": "pereirajs.github.io/pagina", "permissions": "danielnewell.github.io/permissions", + "persian-tools": "persian-tools.github.io/persian-tools", + "personalkanban": "nishantpainter.github.io/personal-kanban", "perspective": "leopoldthecoder.github.io/Perspective", "peter": "peterccpang.github.io", "pguth": "pguth.github.io", "ph1p": "ph1p.github.io", + "phaker": "phakerjs.github.io/phaker.js", + "phantom": "eliasnau.github.io/phantomjs", "pharaoh": "pharaoh-js.github.io", // noCF? (don´t add this in a new PR) - "phi": "phi-tools.netlify.com", + "pharo": "pharojs.github.io/pharo-js-org", + "phazor": "phazor-js.github.io/Phazor.js", + "phi": "phi-tools.netlify.app", + "phisherman": "thewilloftheshadow.github.io/phisherman.js", "phobos": "phobosjs.github.io/phobos.js", "phoenix35": "phoenix35.github.io/js-help", - "photo-sphere-viewer": "mistic100.github.io/Photo-Sphere-Viewer", // noCF? (don´t add this in a new PR) + "photo-sphere-viewer": "photo-sphere-viewer.netlify.app", + "phpjs": "binarykorra.github.io/phpJS", "phx": "phxjs.github.io", - "phylum": "phylumjs.github.io", "physics-demos": "lachlandk.github.io/physics-demos", + "piano": "ronyeh.github.io/piano", + "picard": "picardjs.github.io", "picsim": "mazko.github.io/picsim.js", + "pict-node": "gmaxlev.github.io/pict-node", + "pidoc": "smapiot.github.io/pidoc", "pig-game": "dhanushp.github.io/pig-game", - "pigeon-maps": "mariusandra.github.io/pigeon-maps", + "pigeon-maps": "pigeon-maps.netlify.app", "piii": "piiijs.github.io/piii.js.org", + "pika": "xiaopika.github.io/pika.js.org", "piling": "flekschas.github.io/piling.js", + "pineapple": "totaltechgeek.github.io/pineapple", "pinf": "pinf.github.io", // noCF? (don´t add this in a new PR) - "ping": "pingbey.github.io/ping", "pinipig": "jmdisuanco.github.io/pinipig", + "pino-nest": "yamcodes.github.io/pino-nestjs", + "pinyin": "hotoo.github.io/pinyin", "pipes": "pipesjs.github.io", // noCF? (don´t add this in a new PR) - "pitermarx": "pitermarx.github.io", // noCF? (don´t add this in a new PR) "pivot": "wnda.github.io/pivot", "pivotgrid": "iskandr1.github.io/Pivot", "pivottable": "nicolaskruchten.github.io/pivottable", + "pixelanimator": "grough.github.io/pixel-animator", "pixelart": "meriadec.github.io/PixelartJS", // noCF? (don´t add this in a new PR) - "pixxel": "pixxel.github.io", + "pixiv": "cname.vercel-dns.com", // noCF + "pixkit": "pixkit.m1dnightdev.repl.co", + "pixpact": "legendsayantan.github.io/pixpact", + "pizzle": "pizzlejs.github.io", + "plain-blog": "weareoutman.github.io/plain-blog", "plait": "wildlyinaccurate.github.io/plait", "plan": "agauniyal.github.io/plan", "planisphere": "dai-shi.github.io/planisphere-site", // noCF? (don´t add this in a new PR) "planner": "openplannerteam.github.io/planner.js", "platz": "fylipp.github.io/platz.js", - "player": "player.netlify.com", - "plexr": "plexrbot.github.io", + "player": "player.netlify.app", + "playjs": "hunghg255.github.io/playjs", "pliers": "pliersjs.github.io", // noCF? (don´t add this in a new PR) + "plotyxd": "plotyxd.github.io", + "plumier": "plumier.github.io", "pnpm": "pnpm.github.io", + "pod": "mileallen.github.io/pod", + "podivilov": "podivilov.github.io", "poegems": "max-arias.github.io/poeGems", // noCF? (don´t add this in a new PR) "pogo": "aaronduino.github.io/pogo", - "poi": "poi.netlify.com", + "pogtopia": "alexander9673.github.io/Pogtopia", + "poi": "poi.onrender.com", // noCF "poke": "gregjw.github.io/poke", "polished": "styled-components.github.io/polished", - "polix": "polix.netlify.com", + "polix": "polix.netlify.app", "polkadot": "polkadot-js.github.io", + "polona": "huxinfeng.github.io/polona", + "polydns": "cname.vercel-dns.com", // noCF "polygon-clipping": "mfogel.github.io/polygon-clipping", "polythene": "arthurclemens.github.io/Polythene", // noCF? (don´t add this in a new PR) "pomidorus": "tatyshev.github.io/pomidorus", + "pong-zh": "xiaozhu2021.github.io/javascript-pong", "popcorn-api": "nirewen.github.io/popcorn-api", "popper": "fezvrasta.github.io/popper.js", + "popup": "simondmc.github.io/popup-site", + "portafolio-web": "velazquezadrian.github.io/Portafolio-web", + "portafolioalejandrarobles": "alerobles3.github.io/portafolioalejandrarobles", + "portafolioarnulfo": "arpior.github.io/Portafolio", + "portafolioluis": "luisself2020.github.io/portafolioluis", + "portafoliorufino": "rufino-hdez.github.io/portafolio", "portainer-update": "flweber.github.io/portainer-stack-updater", "porter": "ahopkins.github.io/porterjs", // noCF? (don´t add this in a new PR) + "portfolito": "sleelin.github.io/portfolito", + "portpilot": "portpilot.pages.dev", + "poru": "cname.vercel-dns.com", // noCF "post-type-discovery": "twozeroone.github.io/post-type-discovery", + "postlit": "postlit.github.io/postlit.js-site", "potion": "finnfiddle.github.io/potion", - "powercycle": "sarimarton.github.io/powercycle", + "pp": "promptpay.github.io", + "pplayer": "m4tec.github.io/PenguinPlayer", "ppt": "1ocalhost.github.io/ppt", "pptx": "meshesha.github.io/jspptxjs.github.io", + "pranab": "pranabdas.github.io/pranab", "pranshuchittora": "pranshuchittora.github.io", + "pratyay": "cname.vercel-dns.de", // noCF + "praveen": "praveenscience.github.io/praveen.js.org", + "precision": "jaiko86.github.io/precisionjs-home", + "presence": "yomorun.github.io/presence.js.org", + "preset": "awesome-starter.github.io/website", "pretty-print-json": "center-key.github.io/pretty-print-json", "prettylog": "moosecoop.github.io/PrettyLog", - "prismarine": "prismarinejs.github.io", - "prismic-nuxt": "nuxt-community.github.io/prismic-module", - "pristine": "sha256.github.io/Pristine", //noCF + "pristine": "sha256.github.io/Pristine", // noCF + "priyansh": "priyanshorg.github.io", // noCF + "prodia": "04b1585dc1-hosting.gitbook.io", // noCF "producify": "jesobreira.github.io/producify", "producthunt-trending": "xiaomingplus.github.io/producthunt-trending", "profanity-finder": "gautamkrishnar.github.io/profanity-finder.js", "profile": "treboryx.github.io/Profile", - "program-builder": "program-builder.netlify.com", - "project-ignite": "project-ignite.github.io", + "program-builder": "program-builder.netlify.app", + "progressbars": "josephabbey.github.io/progressbars", "projects-tracker": "iamdevlinph.github.io/projects-tracker", - "promise": "gleeny.github.io/promise-redirect", + "promethium": "promethiumjs.github.io/docs", // noCF + "pronouns": "cname.vercel-dns.com", // noCF + "propresenter": "thewilloftheshadow.github.io/propresenter", "proteic": "proteus-h2020.github.io/proteic", + "proto-message-helper": "rexskz.github.io/proto-message-helper", "proton": "jonathanzzero.github.io/proton", "proton-native": "kusti8.github.io/proton-native", + "protonio": "aktilacengiz.github.io/protonio", "prototyped": "ardalanamini.github.io/prototyped.js", "protype": "arguiot.github.io/ProType", + "proxy-memoize": "dai-shi.github.io/proxy-memoize", + "proxy.meow": "cname.vercel-dns.com", // noCF + "proyecto-estadistica-2020": "eduardodevop.github.io/proyecto-estadistica-2020", + "pruf": "signalwerk.github.io/pruf", + "pruthvisoni": "pruthvisooni.github.io", "ps": "spindlyskit.github.io/ps.js", "pt-pt.single-spa": "single-spa.github.io/pt-pt.single-spa.js.org", // noCF + "ptero": "pterojs.github.io/ptero.js-docs", + "pteromanager": "pteromanager.github.io/Website", "ptrdo": "ptrdo.github.io", "pubg": "ickerio.github.io/pubg.js", "publish-subscribe": "r37r0m0d3l.github.io/publish_subscribe", "published": "fiverr.github.io/published", - "pulse": "alias.zeit.co", //noCF + "puebi": "puebi.netlify.app", // noCF + "pulsy": "ngdream.github.io/pulsyjs", + "puppet": "anandchowdhary.github.io/puppet", "pure": "fengzilong.github.io/pure", - "purpzie": "purpzie.github.io/site", + "purplet": "purpletjs.netlify.app", + "pushoo": "imaegoo.github.io/pushoo", + "pusu": "xliudaxia.github.io/pusu-ui", + "puzzle": "puzzlelang.github.io", "pwa": "charistheo.github.io/pwa.js.org", "pwa-cookbook": "sylvainpolletvillard.github.io/pwa-cookbook", "pwa-workshop": "sylvainpolletvillard.github.io/pwa-workshop", - "pwapp": "nikiforov-org.github.io/pwapp", + "py-like": "ruben-arushanyan.github.io/py-like", "qbit": "fudan-mse.github.io/qbit", + "qbsz": "qbsz.github.io", "qs": "kirjs.github.io/qs.js", // noCF? (don´t add this in a new PR) + "quacky": "quacky-bot.github.io", "quantlib": "quantlibjs.github.io", - "quark": "smarchetti.github.io/quark", + "quantum": "militia21.github.io/quantum", + "que": "seatwork.github.io/que.js", "querybuilder": "mistic100.github.io/jQuery-QueryBuilder", // noCF? (don´t add this in a new PR) - "question": "teamtofu.github.io/questionify", - "quickdb": "truexpixels.gitbooks.io/quickdb", + "quick": "d7b7ae5e1e-hosting.gitbook.io", // noCF + "quick-crud": "kingrayhan.github.io/quick-crud", + "quickdb": "plexidev.github.io/quick.db-docs", + "quickerdb": "maniabots.github.io/QuickerDB", + "quickmongo": "quickmongo.netlify.app", + "quickpterodactyl": "condescending-haibt-c79013.netlify.app", + "quickredis": "hosting.gitbook.io", // noCF + "quickreplit": "lebyy.github.io/quick.replit", + "quickshadow": "cname.vercel-dns.com", // noCF + "quickuptime": "lebyy.github.io/quickuptimedocs", + "quicli": "thecodeah.github.io/quicli", "quincy": "quincyx.github.io", - "quinten": "regyo.github.io/quinten", "quiz-app": "odevlord.github.io/Quiz-App", // noCF? (don´t add this in a new PR) - "quotes": "sawyerbx.github.io/quotes", + "quizizz": "zaida04.github.io/Quizizz.js", + "quizlet": "redyetidev.github.io/Quizlet.JS", + "quizmaster": "mechtester.github.io/quizmaster", + "quotobot": "team-gigabyte.github.io/quotobot", "r": "r-js.github.io", "ractive": "ractivejs.github.io", "rad": "rapid-application-development-js.github.io/RAD.JS", // noCF? (don´t add this in a new PR) + "radashi": "radashi-org.github.io", "radi": "radi-js.github.io/radi", "radial": "ckgrafico.github.io/radial.js", // noCF? (don´t add this in a new PR) - "rafaelmangolin": "rafaelMangolin.github.io", // noCF? (don´t add this in a new PR) + "rafaelmangolin": "rafaelmangolin.github.io", // noCF? (don´t add this in a new PR) "rahul": "rahulsukla.github.io/rahul", // noCF? (don´t add this in a new PR) "rahulbussa": "rahulbussa.github.io", "ralmaz": "ralmaz.github.io", "ralphi": "yonjah.github.io/ralphi", + "random-item": "ultirequiem.github.io/random_item", "random-machine": "officialpiyush.github.io/random-machine", - "randy": "randyviandaputra.github.io", + "randomer": "kzacharski.github.io/randomer", + "randomimgapi": "hosting.gitbook.io", "rangeslider": "andreruffert.github.io/rangeslider.js", // noCF? (don´t add this in a new PR) + "ranmess": "ultirequiem.github.io/ranmess", "rasti": "8tentaculos.github.io/rasti", "rate-limiter-api": "abhisekp.github.io/rate-limiter-api", + "ravelloh": "ravello-h.github.io", "rax": "alibaba.github.io/rax", "rax0-6": "raxjs.github.io/website-rax-v0.6", + "raylen": "ausername-1.github.io/raylen.js", "rayo": "getrayo.github.io/rayo.js", + "rclone": "sntran.github.io/rclone.js", "rdf": "rdfjs.github.io", // noCF + "rdpmovy": "rdp-studio.github.io/rdpmovy.js", "react-atomic-ui": "react-atomic.github.io/react-atomic-ui", "react-autosuggest": "moroshko.github.io/react-autosuggest", // noCF? (don´t add this in a new PR) "react-autowhatever": "moroshko.github.io/react-autowhatever", // noCF? (don´t add this in a new PR) - "react-chart": "react-charts.netlify.com", - "react-charts": "react-charts.netlify.com", - "react-command-palette": "react-command-palette.netlify.com", + "react-character-map": "vpukhanov.github.io/react-character-map", + "react-chartjs-2": "reactchartjs.github.io/react-chartjs-2", + "react-chef": "web-slate.github.io/react-chef", + "react-ck": "abelflopes.github.io/react-ck", + "react-comfort": "ruben-arushanyan.github.io/react-comfort", + "react-command-palette": "react-command-palette.netlify.app", + "react-component-shell": "ruben-arushanyan.github.io/react-component-shell", "react-controlled-form": "rofrischmann.github.io/react-controlled-form", "react-coroutine": "alexeyraspopov.github.io/react-coroutine", "react-day-picker": "gpbl.github.io/react-day-picker", // noCF - "react-dropzone": "react-dropzone.netlify.com", + "react-dnd-cn": "apex-loadbalancer.netlify.app", + "react-dropzone": "react-dropzone.netlify.app", "react-dropzone-uploader": "fortana-co.github.io/react-dropzone-uploader", "react-easy-swipe": "leandrowd.github.io/react-easy-swipe", // noCF? (don´t add this in a new PR) "react-entanglement": "react-entanglement.github.io", - "react-form": "react-form.netlify.com", + "react-facet": "jolly-stone-0d2f00e03.azurestaticapps.net", // noCF "react-hint": "slmgc.github.io/react-hint", + "react-instastories": "kenclaron.github.io/react-instastories", + "react-jewish-datepicker": "shmulik-kravitz.github.io/react-jewish-datepicker", + "react-layout-components": "kripod.github.io/react-layout-components", "react-leaflet": "paullecam.github.io/react-leaflet", - "react-move": "react-move.netlify.com", + "react-mise": "tachibana-shin.github.io/react-mise", + "react-native-csv": "react-native-csv.github.io", + "react-native-document-scanner": "websitebeaver.github.io/react-native-document-scanner-plugin", + "react-native-elements": "react-native-elements.github.io/playground", + "react-native-error-boundary": "cname.vercel-dns.com", // noCF + "react-native-flex-layout": "cname.vercel-dns.com", // noCF "react-native-floating-labels": "mayank-patel.github.io/react-native-floating-labels", + "react-native-track-player": "doublesymmetry.github.io/react-native-track-player", // noCF "react-observatory": "hosting.gitbook.com", "react-papaparse": "react-papaparse.github.io", "react-pivottable": "plotly.github.io/react-pivottable", - "react-redux": "react-redux-docs.netlify.com", //noCF + "react-querybuilder": "react-querybuilder.github.io", + "react-redux": "react-redux-docs.netlify.app", // noCF "react-responsive-carousel": "leandrowd.github.io/react-responsive-carousel", // noCF? (don´t add this in a new PR) - "react-static": "nozzle-react-static.netlify.com", - "react-story": "react-story.netlify.com", - "react-styleguidist": "styleguidist.netlify.com", - "react-table": "react-table.netlify.com", + "react-server-forms": "cname.vercel-dns.com", // noCF + "react-showroom": "react-showroom.netlify.app", + "react-starport": "react-starport.netlify.app", + "react-styleguidist": "styleguidist.netlify.app", + "react-table-ui": "guptasiddhant.github.io/react-table-ui", "react-telegram": "appbak3r.github.io/react-telegram", - "react-through": "hosting.gitbook.com", + "react-through": "hosting.gitbook.com", // noCF "react-toulouse": "moox.github.io/react-toulouse", "react-tracked": "dai-shi.github.io/react-tracked", + "react-ui-animate": "dipeshrai123.github.io/react-ui-animate-docs", + "react-uicomp": "dipeshrai123.github.io/React-UIComp-Docs", + "react-unimodal": "chrisli-03.github.io/react-unimodal", "reactabular": "bebraw.github.io/reactabular", + "reactant": "unadlib.github.io/reactant", "reactdesktop": "gabrielbull.github.io/react-desktop", // noCF? (don´t add this in a new PR) - "reactif": "reactif.netlify.com", - "reactiflux": "reactiflux.netlify.com", + "reactflow-cn": "cname.vercel-dns.com", // noCF + "reactiflux": "reactiflux.netlify.app", "reactour": "elrumordelaluz.github.io/reactour", + "reactpatterns": "reactpatterns.github.io", "reactql": "leebenson.github.io/reactql-site", + "reactsearch": "anujsharma141.github.io/reactsearch", + "read-from-fs": "ultirequiem.github.io/read-from-fs", "readcolor": "keiww.github.io/readcolorhex", + "readit": "teebu.github.io/readit", + "readmix": "iaseth.github.io/readmix", + "reager": "reagerssalss.github.io/reager", + "realsee": "realsee-developer.github.io", "realt": "vnkitaev.github.io/realt", - "realtime": "datamcfly.github.io/realtimejs", // noCF? (don´t add this in a new PR) - "ream": "ream.netlify.com", "reask": "mcsh.github.io/reask", "reassign": "hasharray.github.io/reassign.js", "reatom": "artalar.github.io/reatom", "rebatov": "rebatov.github.io", "rebem": "rebem.github.io", // noCF? (don´t add this in a new PR) + "reciple": "cname.vercel-dns.com", // noCF "recover": "luisvallejomohl.github.io/Recover.js", "recycle": "recyclejs.github.io/recycle", - "redfox": "kavanmevada.github.io", + "rediagram": "kamiazya.github.io/rediagram", "redis": "noderedis.github.io/node_redis", // noCF? (don´t add this in a new PR) "redline": "abduvokhid.github.io/redline", "redom": "redom.github.io/redom-docs", "reduce": "reducejs.github.io", // noCF? (don´t add this in a new PR) - "redux": "redux-docs.netlify.com", // noCF + "redux": "redux-docs.netlify.app", // noCF "redux-actions": "hosting.gitbook.com", // noCF - "redux-aggregate": "redux-aggregate.netlify.com", + "redux-agent": "bard.github.io/redux-agent", + "redux-aggregate": "redux-aggregate.netlify.app", "redux-arc": "viniciusdacal.github.io/redux-arc", + "redux-cool": "ruben-arushanyan.github.io/redux-cool", "redux-data-structures": "adrienjt.github.io/redux-data-structures", "redux-dynamic-modules": "microsoft.github.io/redux-dynamic-modules", - "redux-leaves": "redux-leaves.netlify.com", + "redux-leaves": "redux-leaves.netlify.app", "redux-loop": "redux-loop.github.io/redux-loop", "redux-nakshatra": "agenthunt.github.io/redux-nakshatra", "redux-observable": "redux-observable.github.io/redux-observable", @@ -1598,174 +2707,301 @@ var cnames_active = { "redux-resource": "hosting.gitbook.com", // noCF "redux-ru": "hosting.gitbook.com", "redux-saga": "redux-saga.github.io/redux-saga", - "redux-saga-firebase": "alias.zeit.co", //noCF - "redux-saga-in-chinese": "superRaytin.github.io/redux-saga-in-chinese", - "redux-starter-kit": "redux-starter-kit-docs.netlify.com", + "redux-saga-controller": "tech-rubicone.github.io/redux-saga-controller", + "redux-saga-firebase": "alias.zeit.co", // noCF + "redux-saga-in-chinese": "superraytin.github.io/redux-saga-in-chinese", + "redux-starter-kit": "redux-starter-kit-docs.netlify.app", + "redux-syringe": "wafflepie.github.io/redux-syringe", "redux-tiles": "bloomca.github.io/redux-tiles", - "redux-toolkit": "redux-starter-kit-docs.netlify.com", + "redux-toolkit": "redux-starter-kit-docs.netlify.app", "redux-tools": "lundegaard.github.io/redux-tools", "redux-undo": "hosting.gitbook.com", "redux-webpack-boilerplate": "cchamberlain.github.io/redux-webpack-boilerplate", // noCF? (don´t add this in a new PR) "reduxible": "pitzcarraldo.github.io/reduxible", // noCF? (don´t add this in a new PR) + "ree": "reejs.netlify.app", + "reflare": "xiaoyang-sde.github.io/reflare.js.org", + "reforms": "empla.github.io/reforms-docs", "refract": "hosting.gitbook.com", "refraction": "mbasso.github.io/refraction", // noCF? (don´t add this in a new PR) "refujs": "refujs.github.io", // noCF? (don´t add this in a new PR) + "refun": "gears233.github.io/refun", "regexly": "neeksandhu.github.io/regexly", "reghack": "hacker719.github.io/RegHack", + "registry.flightpkg": "cname.vercel-dns.com", // noCF "regraph": "izhaki.github.io/regraph", + "reka": "cname.vercel-dns.com", // noCF "rekit": "supnate.github.io/rekit", // noCF "relate": "jakelazaroff.github.io/relate", // noCF? (don´t add this in a new PR) "relaunch": "pd4d10.github.io/relaunch", + "relic": "relicjs.github.io", + "rema": "heyrema.github.io/docs", "remark": "remarkjs.github.io/remark", + "remote-faces": "dai-shi.github.io/remote-faces", "rengular": "chigix.github.io/rengular", - "renovate": "sawyerbx.github.io/renovate", + "renzu": "aarvinr.github.io/renzu", "repackage": "cchamberlain.github.io/repackage", // noCF? (don´t add this in a new PR) "repeater": "repeaterjs.github.io/repeater", - "replace": "quales.github.io/replace.js", - "reply": "eton4446.github.io/Reply", + "repl": "snowflyt.github.io/repl", + "replay": "edbentley.github.io/replay", + "reqsrv": "axtk.github.io/reqsrv", "request": "request.gitbooks.io", // noCF? (don´t add this in a new PR) - "reshape": "reshape.netlify.com", + "reselect": "reselect-docs.netlify.app", + "reshape": "reshape.netlify.app", "reshift": "hasharray.github.io/reshift.js", - "resources": "mrdatastorage.github.io/resources.js", + "resources-for": "e1c62a33-d2a5-4a81-9e7e-78fe221e17bb.id.repl.co", // noCF "rest-client": "foxifyjs.github.io/rest-client", "restjs": "daviesgeek.github.io/restjs", // noCF? (don´t add this in a new PR) + "reststops": "thomasbrueggemann.github.io/reststops", "resume": "xaoxuu.github.io/resume.js.org", "resume-builder": "blopa.github.io/Resume-Builder", + "retalk": "cname-china.vercel-dns.com", // noCF "rete": "retejs.github.io", "reto": "awmleer.github.io/reto", + "retos": "cname.vercel-dns.com", // noCF + "retro-sound": "learosema.github.io/retro-sound", "retux": "crimx.github.io/retux", "revaluate": "hasharray.github.io/revaluate.js", + "reviewbuku": "mzaini30.github.io/reviewbuku", + "revolt": "revoltchat.github.io/revolt.js", + "revurn": "revurn.github.io", + "rexs": "uellenberg.github.io/REXS", + "reyes": "michaelbreyes.github.io/reyes", + "rgbstrip": "xrealneon.github.io/RGBStrip", + "rhm": "gsongsong.github.io/rhm", "rickdesantis": "rickdesantis.github.io", + "ricos": "wix.github.io/ricos", + "riffy": "cname.vercel-dns.com", // noCF + "riiickyy": "riiickyy.github.io", "riklewis": "riklewis.github.io", + "rimmel": "hellomenu.github.io/rimmel", + "ringo": "cname.vercel-dns.com", // noCF + "rinzler": "gitsquared.github.io/rinzler", "riot": "riot.github.io", "riotgear": "riotgear.github.io", "rishi": "rishiosaur.github.io", - "risingstars": "risingstars.netlify.com", + "risingstars": "cname.vercel-dns.com", // noCF "risingstars2016": "michaelrambeau.github.io/risingstars2016", + "ritchie": "amukh1.github.io/Ritchie", "rize": "g-plane.github.io/rize", "rmodal": "zewish.github.io/rmodal.js", + "rn-material": "cname.vercel-dns.com", // noCF "roadmafia": "roadmafia.github.io", + "roalia": "roaliia.github.io", + "roam": "roam-cn.github.io", + "robo-wizard": "hipsterbrown.github.io/robo-wizard", "rock": "w3core.github.io/RockJS", - "rocket": "KevinOfNeu.github.io/rocket", + "rocket": "kevinofneu.github.io/rocket", "rocketact": "jdf2e.github.io/rocketact", "rockjins": "rockjins.github.io", "roger": "klopango.github.io/js-org", "roghib": "hosting.gitbook.com", + "romanager": "imacodr.github.io/romanager", + "romcal": "romcal.github.io", + "room": "atercerosb.github.io/roomHomepage", "roosterapp": "roembol2000.github.io/roosterapp-mobile", + "rose": "discord-rose.github.io/discord-rose", "rosmaro": "lukaszmakuch.github.io/rosmaro", "router-advanced": "oldergod.github.io/router-advanced", "router5": "hosting.gitbook.com", - "routex": "routex.netlify.com", + "routescape": "axtk.github.io/routescape", + "routex": "routex.netlify.app", + "rovel": "rovelstars.github.io", "rp": "rpocklin.github.io", // noCF? (don´t add this in a new PR) "rplayer": "davland7.github.io/rplayer", + "rsa": "cname.vercel-dns.com", // noCF "rsshub": "diygod.github.io/RSSHub", "rsshub-reader": "sevenoutman.github.io/RSSHub-Reader", - "rst": "rst-js.github.io/rst.js.org", - "ru.react": "js-rus.github.io/react-ru", + "rt": "rohantinna.github.io/rt", + "ru.react": "js-rus.github.io/react-ru", // noCF + "ru.react-redux": "mskkote.github.io/react-redux-ru", // noCF "ru.redux-saga": "hosting.gitbook.com", // noCF + "ru.single-spa": "single-spa.github.io/ru.single-spa.js.org", // noCF "rub": "rubo-21.github.io", "ruhuman": "ruhuman.github.io", // noCF? (don´t add this in a new PR) - "russell": "teamtofu.github.io/russelljs", + "runtimex": "minecraftpublisher.github.io/RuntimeX", + "runty": "nderscore.github.io/runty", + "russell": "russellsteadman.github.io/russelljs", "russia-wc": "kaykayehnn.github.io/russia-wc", "rut": "jeam.github.io/rut", "ruwan": "rpgee.github.io", "rva": "fanyer.github.io/rva", - "ryaneldon": "rdogstyle.github.io/ryaneldon", - "ryzokuken": "ryzokuken.github.io", + "ryaneldon": "ry-e.github.io", "s3swa": "s3swa-ict-upgifter.github.io/snow-eater", "s4swa": "s4swa.github.io", + "saaskit": "cname.vercel-dns.com", // noCF + "sacgencode": "sacgencode.github.io", + "saeed": "mrsaeeddev.github.io", + "safe": "hiren2001.github.io/SafeJS", "sagui": "saguijs.github.io", // noCF? (don´t add this in a new PR) "sahilister": "sahilister.github.io/portfolio", + "sai": "janeirodigital.github.io/sai-js", "saigon": "saigonjs.github.io", "sailesh": "saileshkasaju.github.io/crud-react-redux-mongo", + "sakiv": "sakiv.github.io", "salvacam": "salvacam.github.io", "salvattore": "rnmp.github.io/salvattore", "sam": "jdubray.github.io/sam", // noCF? (don´t add this in a new PR) + "samathgen": "sadykhzadeh.github.io/samathgen", "samlify": "tngan.github.io/samlify", "samply": "yury-shevchenko.github.io/samply", "samplyr": "arze1.github.io/samplyr-site", + "sampoder": "sampoder.github.io", + "samsun": "cname.vercel-dns.com", // noCF + "san": "baidu.github.io/san", + "san-cli": "ecomfe.github.io/san-cli", "sanctuary": "sanctuary-js.github.io/sanctuary-site", - "sanddance": "microsoft.github.io/SandDance", + "sanddance": "danmarshall.github.io/SandDance", "sandeepkhandewale": "learner1024.github.io", - "sanity-runner": "tophat.github.io/sanity-runner", + "sandmine": "spreehertz.github.io/Sandmine.js", + "sandy": "5ffc2f69-8054-4d5a-91b8-6a787901ed3d.repl.co", // noCF "sanohin": "sanohin.github.io", - "santa": "codedrs.github.io/secret-santa", "saso": "huruji.github.io/saso", "sass": "medialize.github.io/playground.sass.js", // noCF? (don´t add this in a new PR) - "satont": "satont.github.io", + "satori": "satorijs.github.io", "saulosantiago": "saulosilva.github.io", // noCF? (don´t add this in a new PR) - "sawyer": "sawyerbx.github.io/personal", + "sawyer": "sqwwy.github.io/sawyer.js.org", "sazerac": "sazeracjs.github.io/sazerac-site", "sb": "santiaguf.github.io", - "scancell": "teamtofu.github.io/scancell", + "sc136": "sc136.github.io/sc-136", + "scadies": "kysolva.github.io/scadies", // noCF + "scancell": "russellsteadman.github.io/scancell", "scene": "daybrush.github.io/scenejs-page", - "schema": "foxifyjs.github.io/schema", + "schema": "hosting.gitbook.com", + "schema-render": "barrior.github.io/schema-render", + "schemy": "aeberdinelli.github.io/schemy", "scopes": "kelleyvanevert.github.io/scopes", + "scramb": "jastinxyz.github.io/scramb", "scramble": "ignatiusmb.github.io/scramble", + "scrap": "nab138.github.io/scrap", "scratch": "scratch-js.github.io", "screentocodesandbox": "ckgrafico.github.io/ScreenshotToCodeSandbox", "scriptex": "scriptex.github.io", - "sdh": "sdh.netlify.com", + "scroller-motion": "scroller-motion.netlify.app", + "scrollery": "scrollery.netlify.app", + "scrollmirror": "scrollmirror.netlify.app", + "scrollyvideo": "dkaoster.github.io/scrolly-video", + "scsaver": "hamalt.github.io/scsaver", + "sdg": "faylearn.github.io/sdgs", + "sdh": "sdh.netlify.app", + "sdjwt": "openwallet-foundation-labs.github.io/sd-jwt-js", "sdk-design": "hueitan.github.io/javascript-sdk-design", + "searchconfig": "tomchen.github.io/searchconfig", + "season": "seasonjs.github.io/tools", "seatbelt": "seatbeltjs.github.io/seatbelt", "seatchart": "omarmahili.github.io/seatchart.js", + "sebasvalcar": "sebasvalcar.github.io/portafolio", + "secrethitler": "finncowbell.github.io/DetectiveDictator", "secsb": "secsb.github.io", + "secure-event-emitter": "ruben-arushanyan.github.io/secure-event-emitter", "security-list": "lissy93.github.io/personal-security-checklist", "sed": "42ua.github.io/sed", + "see-more-demo": "wangdabaoqq.github.io/vuepress", "seemple": "finom.github.io/seemple.js.org", "seesaw": "cajogos.github.io/seesaw", + "segno": "keimeno.github.io/segno", "segoe-mdl2-css": "ckgrafico.github.io/Segoe-mdl2-assets-css", // noCF? (don´t add this in a new PR) + "seia": "importantimport.github.io/seia", "select_io": "selaromi.github.io/select_io", // noCF? (don´t add this in a new PR) + "selectable-grid": "pisyukaev.github.io/selectable-grid", "selectors": "selectors.github.io/selectors.js", + "selectre": "alexeyraspopov.github.io/selectre", "selectric": "lcdsantos.github.io/jQuery-Selectric", // noCF? (don´t add this in a new PR) - "sendilkumarn": "sendilkumarn.github.io", + "semantic-api": "semantic-api.github.io/docs", + "semo": "semojs.github.io/semo", + "senil": "mrfarhad.github.io/senilwebsite", "seoul": "seouljs.github.io/seoul.js.org", + "sequel": "sequeljs.github.io", + "sequelize-cn": "apex-loadbalancer.netlify.app", // noCF "sequential": "lorenzoongithub.github.io/sequential", "serginator": "serginator.github.io", // noCF? (don´t add this in a new PR) "serializer": "haircvt.github.io/serializerjs", // noCF? (don´t add this in a new PR) "serlina": "djyde.github.io/serlina", - "servercore": "mayerdev.github.io/md-server-core", - "serverest": "paulogoncalvesbh.github.io/serverest", "service-mocker": "service-mocker.github.io/service-mocker", "serviceberry": "bob-gray.github.io/serviceberry", + "sesam": "lennertderyck.github.io/sesam", + "setheum": "setheum-js.github.io", + "sfml": "xadillax.github.io/node-sfml", + "shandler": "hosting.gitbook.io", // noCF + "sharding": "infinitytmbots.github.io/discord-hybrid-sharding", "share": "jeff-tian.github.io/weshare", - "shareon": "NickKaramoff.github.io/shareon", + "sharec": "lamartire.github.io/sharec", + "shareon": "shareon.kytta.codeberg.page", // noCF + "sharingan": "techmonowar.github.io/sharingan", "sheet": "sheetjs.github.io/sheet.js.org", "shekhar": "shekharreddy4.github.io/Shekhar", - "shermix": "shermix.github.io", + "shell": "adaltas.github.io/node-shell", + "sheweny": "sheweny.github.io/framework", + "shex": "shexjs.github.io/shex.js", + "shibe-online": "1chisensei.github.io/shibe.online", "shikwasa": "jessuni.github.io/shikwasa", + "shilong": "echoheim.github.io/shilong", "shine": "shinenelson.github.io/shine.js.org", + "shinobu": "shinobujs.github.io/Shinobu", + "shiraha": "importantimport.github.io/shiraha", "shirajuki": "shirajuki.github.io", + "shiro": "shironekoa3.github.io/shiroim", + "shiro-gg": "moyshik7.github.io/shiro-gg", "shobhitchittora": "shobhitchittora.github.io", - "shop": "shopjs.netlify.com", - "short": "shortit.netlify.com", + "shop": "shopjs.netlify.app", + "short": "shortit.netlify.app", "shortener": "jsmiith.github.io/shortener", - "shortquery": "s--minecraft.gitbooks.io/shortquery-js", // noCF? (don´t add this in a new PR) - "showroom": "showroom-js.herokuapp.com", - "shscode": "shs-coding-club-projects.github.io", + "shortio": "ichiidev.github.io/short.io-docs", + "shrimple": "shrimplejs.github.io", + "shuffle": "vestride.github.io/Shuffle", + "shuwan9": "shuwan9.github.io", + "siddharth": "chaudhs769.github.io/siddharth.js.org", + "sidekick": "cname.vercel-dns.com", // noCF "sidekik": "inf3cti0n95.github.io/sidekik", + "sidewind": "sidewind.pages.dev", "sights": "sfxrescue.github.io/sights", - "silas229": "silas229.github.io", + "sign-poc": "imcotton.github.io/sign-poc", // noCF + "signaldb": "maxnowack.github.io/signaldb", // noCF + "signalz": "hosting.gitbook.io", // noCF "silfr": "silfr.github.io/iterativecolor", "silkster": "silkster.github.io", - "silky": "wvv8oo.github.com/silky", // noCF? (don´t add this in a new PR) + "silky": "wvv8oo.github.io/silky", // noCF? (don´t add this in a new PR) "siluna": "pahund.github.io/siluna", // noCF? (don´t add this in a new PR) "simba": "jonathanzero.github.io/simba", + "simonhans": "simonhans.github.io", + "simpldb": "hosting.gitbook.io", // noCF + "simple": "lescinskiscom.github.io/simple-js", + "simple-pip": "frogweezer.github.io/simple-pip", "simplecounter": "tomkiernan120.github.io/simplecounter", + "simplecrypto": "danang-id.github.io/simple-crypto-js", + "simplelightbox": "andreknieriem.github.io/simplelightbox", + "simpler-state": "arnelenero.github.io/simpler-state", "simples": "micnic.github.io/simples", + "simplesnake": "aktindo.github.io/Simple_Snake_Game", "simplestate": "nlcgits.github.io/simplestate", + "simply": "fehmi.github.io/simply", + "simplyapi": "cname.vercel-dns.com", // noCF + "simplyd": "simplyd.netlify.app", + "simplyeco": "xx-mohit-xx.github.io/Simply-eco", + "simplyxp": "abadima.github.io/simplyxp", "simulacra": "daliwali.github.io/simulacra", "sina": "sinabakh.github.io/sina", + "singapore": "singaporejs.github.io", "singh": "gxjit.github.io", "single-page-web-app": "lukejpreston.github.io/single-page-web-app", "single-spa": "single-spa.github.io/single-spa.js.org", "sirkit": "seckwei.github.io/SirKit_CircuitSim", // noCF? (don´t add this in a new PR) - "sistersbio": "KDiaCodes.github.io/SistersBio", + "sissi": "sissijs.github.io/sissi", + "sistersbio": "kdiacodes.github.io/SistersBio", "sizle": "christoga.github.io/sizle", // noCF? (don´t add this in a new PR) + "sjpm": "toggledtech.github.io/SJPM", + "sjy": "cname.vercel-dns.com", // noCF + "skeld": "skeldjs.github.io/SkeldJS", "skeptical-coder": "rbpinheiro.github.io/skeptical-coder", "sketch": "keiww.github.io/sketch", "skim": "muratg.github.io/skim", + "skratch": "websyncs.github.io/skratch", + "sksamim": "esksamim.github.io/sksamim", + "skyle": "skylejs.github.io/skyle", + "skyscript": "cname.vercel-dns.com", // noCF + "skyware": "skyware-js.github.io/web", // noCF "slang": "ramadis.github.io/slang", // noCF? (don´t add this in a new PR) + "slapshot": "dvhsh.github.io/slapshot.ts", + "slash-create": "snazzah.github.io/slash-create-website", "slate": "iamshouvikmitra.github.io/slate", "slidemenu": "alexkratky.github.io/SlideMenu.js", "slideout": "mango.github.io/slideout", @@ -1774,423 +3010,746 @@ var cnames_active = { "slidey": "thegreatrazz.github.io/slidey", "slim": "eavichay.github.io/slim.js", "slinky": "alizahid.github.io/slinky", + "smartestchatbot": "lebyy.github.io/smartestchatbotdocs", "smartquotes": "kellym.github.io/smartquotes.js", - "smiley": "Smiley422.github.io", + "smiley": "smiley422.github.io", + "smoke": "hxgf.github.io/smoke", "smoove": "abemedia.github.io/jquery-smoove", - "smox": "132yse.github.io/smox", + "snail-ide": "snail-ide.github.io", "snake": "pakastin.github.io/snake", "snapshot": "vishnupsatish.github.io/snapshot", "snekfetch": "devsnek.github.io/snekfetch", - "snowglobe": "3052cole.github.io/snowglobe", + "snip": "ashy-sea-0a4231910.5.azurestaticapps.net", // noCF "snippet": "jmas.github.io/gist", + "snow": "cname.vercel-dns.com", // noCF + "snowbox": "yuxizhe.github.io/snowbox", + "snowflake": "theinternetfolks.github.io/snowflake", + "snowflake-api": "udit2303.github.io/snowflake-api-docs", + "snowstorm": "explodingcamera.github.io/snowstorm", + "sociably": "machinat.github.io/sociably", "social-likes": "sapegin.github.io/social-likes", // noCF? (don´t add this in a new PR) "social-likes-next": "sapegin.github.io/social-likes-next", // noCF? (don´t add this in a new PR) - "sogou": "iguanren.github.io/sogou", + "soda": "yieldray.github.io/soda", + "solace": "cname.vercel-dns.com", // noCF + "solara": "getsolarajs.github.io/solara-docs", "solder": "mcrocks999.github.io/solder.js", + "solid-file-upload": "swappea.github.io/solid-file-upload", + "solitude": "solitude-docs.netlify.app", + "soloalert": "arnav-kr.github.io/soloalert", "solome": "solome.github.io", + "solu": "soiu.github.io/solu", + "somerandomcat": "hosting.gitbook.io", // noCF + "sonicware": "easyontop.github.io/Sonicware.js", + "soniq": "fullstack-build.github.io/soniq", + "sonnet": "sonnetjs.github.io", "sonny": "sonnylazuardi.github.io", // noCF? (don´t add this in a new PR) - "soofik": "soofik.github.io", "sop": "kuboschek.github.io/sop", - "soroush": "soroushchehresa.github.io/soroush", - "sorting-algorithm-visualiser": "lachlandk.github.io/sorting-algorithm-visualiser", "soukai": "noeldemartin.github.io/soukai", + "soundcloud-scraper": "soundcloud-scraper.netlify.app", "soundpad": "mcpe-pc.github.io/soundpad.js", + "sourcemod": "infinixius.github.io/sourcemod.js", + "southwest": "southwest-js.github.io", + "sp-hooks": "cname.vercel-dns.com", // noCF "spa": "sucom.github.io/SPA.js", "spaas": "pakastin.github.io/spaas", + "space": "pschroen.github.io/space.js", "spacebot": "spacebot2.github.io", + "spark": "hammerheadstudios.github.io/SparkCode", + "spark-handler": "cname.vercel-dns.com", // noCF "spax": "crossjs.github.io/spax-site", "spectragram": "adrianengine.github.io/jquery-spectragram", // noCF? (don´t add this in a new PR) + "speedybot": "valgaze.github.io/speedybot", "speroxu": "speroxu.github.io", + "spicydevs": "spicydevs.github.io", "spider": "spider-scraper.netlify.app", - "spike": "spike.netlify.com", + "spike": "spike.netlify.app", "spin": "fgnass.github.io/spin.js", // noCF? (don´t add this in a new PR) + "spinonsubmit": "thedhanawada.github.io/SpinOnSubmitJS", "spirare": "waldenn.github.io/spirare", // noCF? (don´t add this in a new PR) "spiritual": "spiritual-js.github.io", // noCF? (don´t add this in a new PR) - "splayer": "satosouta.github.io/SPlayer", + "splayer": "catsouta.github.io/splayer-js", + "splendid": "splendid-cms.github.io/website", "split": "nathancahill.github.io/split", - "split-ease": "split-ease.netlify.com", // noCF + "split-ease": "split-ease.netlify.app", // noCF + "splitscript": "03870fca2b-hosting.gitbook.io", // noCF "splitting": "shshaw.github.io/Splitting", - "spotix": "sawyerbx.github.io/spotix", + "spotify": "backtrackapp.github.io/spotify.js", + "spotify-api": "spotifyapidocs.netlify.app", + "spotistats": "spotistats-app.netlify.app", + "spread": "spreadjs.github.io", "spreadsheet": "chiefofgxbxl.github.io/Spreadsheet.js", "spring": "hosting.gitbook.com", "spritesheet": "arcadiogarcia.github.io/Spritesheet.js", // noCF? (don´t add this in a new PR) "spritewerk": "bildepunkt.github.io/spritewerk", // noCF? (don´t add this in a new PR) - "sqrvival": "sawyerjs.github.io/sqrvival" + "spud": "nikop100.github.io/spud", + "spx": "spxjs.netlify.app", + "spyter": "cname.vercel-dns.com", // noCF + "sql": "sql-js.github.io/sql.js", + "sql2struct": "ymlair.github.io/sql2struct", + "sqlchart": "sqlchart.github.io/sqlchart", "squeak": "bertfreudenberg.github.io/SqueakJS", - "squirrelly": "squirrellyjs.netlify.com", // noCF + "squid": "squidjs.github.io/squid", + "squircle": "cname.vercel-dns.com", // noCF + "squirrelly": "squirrellyjs.netlify.app", // noCF + "sr": "samrobbins85.github.io", + "sreeram": "sreeramofficial.github.io/sreeram", "sri": "jackub.github.io/subresource-integrity-fallback", - "staart": "staart.netlify.com", + "ss": "cname-china.vercel-dns.com", // noCF + "sse": "dt-is-not-available.github.io/sse", + "st": "lizs365.github.io/st", + "st-collab": "stoppedwummpython.github.io/st-collab", + "staart": "staart.netlify.app", + "stable-fn": "ultirequiem.github.io/stable-fn", "stabs": "wnda.github.io/stabs", - "stack-styled": "stack-styled.netlify.com", + "stack-styled": "stack-styled.netlify.app", + "stacks": "cname.vercel-dns.com", // noCF "stahlstadt": "dist1.storyblok.com", - "stampit": "stampit-org.gitbook.io/docs", + "stampit": "hosting.gitbook.com", // noCF + "stamps": "ronald-baars.github.io/stamps", + "stampy": "stampylongr.github.io", "standard-resource": "hosting.gitbook.com", // noCF "stapp": "tinkoffcreditsystems.github.io/stapp", + "starfield": "annikav9.github.io/starfield.js", + "starify-discord": "dastormer.github.io/starify-discord", "starratio": "starratio.github.io/star-ratio", // noCF "start": "deepsweet.github.io/start", + "starterdocs": "vtempest.github.io/Serverless-DOCS-Stack", + "starterpk": "starterpk.github.io", + "startup": "startup-js.github.io/startup", "state-machine-cat": "sverweij.github.io/state-machine-cat", "staticinstance": "staticinstance.github.io", // noCF? (don´t add this in a new PR) + "statisfy": "yarn-development.github.io/statisfynpm", "stats": "js-org.github.io/stats.js.org", "status": "mattipv4.github.io/status-codes", + "status-hx": "status-hx-js-org.dns.huangxin.org", // noCF + "stax": "stax.serv00.net", "steemsites": "yhozen.github.io/steemsites", "stego": "zeruniverse.github.io/CryptoStego", // noCF? (don´t add this in a new PR) + "stein": "cname.vercel-dns.com", // noCF "stepan": "stevermeister.github.io", // noCF? (don´t add this in a new PR) "stephenmccall": "stephenmccall.github.io", // noCF? (don´t add this in a new PR) + "stethoscope": "stethoscope-js.github.io/stethoscope.js.org", "steven": "stpeng.github.io", "sticksy": "kovart.github.io/sticksy", "stino": "stinobe.github.io/Stino", "stockings": "kgroat.github.io/stockings", "stoneyallen": "stoneyallen.github.io", + "stonk": "anujsharma141.github.io/stonk", "storage": "uzitech.github.io/storage.js", - "storybook": "storybooks.netlify.com", //noCF + "storelocator": "storelocatorjs.github.io", + "story": "alltobebetter.github.io/story", + "storybook": "apex-loadbalancer.netlify.app", // noCF "storybooks": "storybooks.github.io", - "str": "manelgarcia.github.io/str", + "str": "manelet.github.io/str", "stratic": "straticjs.github.io", + "stream-regex": "getjerry.github.io/stream-regex", "stress": "julindra.github.io/stress.js", - "structure": "hosting.gitbook.com", - "strudel": "strudeljs.netlify.com", + "structure": "hosting.gitbook.io", // noCF + "strudel": "strudeljs.netlify.app", + "strygwyr": "sinkaroid.github.io/strygwyr", "stuck": "linuxenko.github.io/unstuck-webpack", + "studios": "botstudios.github.io/Studios", "style": "dhilipsiva.github.io/style.js", // noCF? (don´t add this in a new PR) - "styled-css-grid": "styled-css-grid.netlify.com", + "stylecss": "aarvinr.github.io/style", + "styled-css-grid": "styled-css-grid.netlify.app", "styled-icons": "alias.zeit.co", // noCF + "styli": "cname.vercel-dns.com", // noCF "stylis": "thysultan.github.io/stylis.js", + "subatomic": "thelazycodernothacker.github.io/Subatomic-Homepage", + "subeditor": "shirtiny.github.io/SubEditor", + "submodule": "submodule-js.github.io/site", "subplayer": "zhw2590582.github.io/SubPlayer", - "sudarshan": "sudarshanRaul.github.io", + "suchary": "skorotkiewicz.github.io/suchary", + "sudarshan": "sudarshanraul.github.io", "sudoku": "andreynering.github.io/sudoku", "sug": "opensug.github.io/sug.js.org", - "suggester": "suggester-bot.github.io/Documentation", + "suggestcord": "suggestcord.github.io/docs", + "suggester": "suggester.github.io/Documentation", "suka": "sukkaw.github.io", + "sulin": "alltobebetter.github.io/sulinjs", "sulky": "shingle.github.io/sulky", // noCF? (don´t add this in a new PR) - "sunbossrs": "sunbossrs.github.io", + "sum": "ultirequiem.github.io/sum", + "suman": "devsumanmdn.github.io", + "summer": "minecraftpublisher.github.io/SummerJS", + "sunar": "cname.vercel-dns.com", // noCF + "sunos": "sunos22.github.io", "sunsistemo": "sunsistemo.github.io/sunsistemo", + "supapi": "kacperkwapisz.github.io/supreme-api-rewritten", "super-controls": "thebearingedge.github.io/super-controls", "super-trim": "beeblebrox3.github.io/super-trim", - "supernova": "janbiasi.github.io/supernova", // noCF? (don´t add this in a new PR) - "sutanlab": "sutanlab.github.io.github.io", + "supernova-tool": "supernova-tool.github.io/supernova-site", + "surgio": "cname.zeabur-dns.com", // noCF + "suroadb": "nicamoq.github.io/SuroADB-Lite", + "surti": "cname.vercel-dns.com", // noCF + "svelkit": "kenoxa.github.io/svelkit", + "svelte-aplayer": "fengkx.github.io/svelte-aplayer", + "svelte-formup": "kenoxa.github.io/svelte-formup", + "svelte-lightbox": "cname.vercel-dns.com", // noCF + "svelte-native-forms": "kevinast.github.io/svelte-native-forms", "svelte-workshop": "korzio.github.io/svelte-workshop", + "sveltestrap": "sveltestrap.github.io/sveltestrap", "svelteui": "transpiling.github.io/svelte-flat-ui", + "svg-crowbar": "cy6erskunk.github.io/svg-crowbar", "svg-skeleton": "yyued.github.io/SVG-Skeleton", - "svr": "kikobeats.github.io/svr", "sw-yx": "sw-yx.github.io", + "swearoo": "codeswithjames.github.io/swearoo", "sweetalert": "t4t5.github.io/sweetalert", "sweetconfirm": "koddr.github.io/sweetconfirm.js", "swipe": "lyfeyaj.github.io/swipe", + "swiss": "suisse.onrender.com", // noCF "switchit": "dongryphon.github.io/switchit", - "switchjoy": "switchjoy.github.io", + "swordcss": "swordcss.netlify.app", + "swot": "swot-node.netlify.app", // noCF "swup": "swup.github.io/docs", + "sx": "screenrecx.netlify.app", + "sxcu": "m-phoenix852.github.io/sxcu.js-docs", "sxw": "sxwjs.github.io", - "syauqi": "syauqizaidan.github.io", "sydinh": "sydinh.github.io", + "synclyrics": "stef-00012.github.io/SyncLyrics-npm", + "synergies": "lukasbach.github.io/synergies", "synth": "lukehorvat.github.io/synth-mood", "syr": "dmikey.github.io/syr", + "system-monitoring": "miladezzat.github.io/system-monitoring", + "t": "l-js.mydevapp.tfuture.eu.org", // noCF "tab": "gdmcc.github.io/tab", + "tabs": "mehrizi.github.io/tabs", + "tagscript": "cname.vercel-dns.com", // noCF "tagster": "goschevski.github.io/tagster", // noCF? (don´t add this in a new PR) "taha": "orcxzjeeeee.github.io/taha", - "taiga": "taigadiscord.github.io", + "tailwind-baseline": "apkoponen.github.io/tailwind-baseline-site", + "takeout": "takeout-bysourfruit.github.io", "talk": "zonayedpca.github.io/talk.js", "talker": "secondstreet.github.io/talker.js", // noCF? (don´t add this in a new PR) "tama": "etk.gitlab.io", + "tampered-console": "hosting.gitbook.io", // noCF "tanmay": "tan-mayhem.github.io/tanmay", "tanok": "brabadu.github.io/tanok", "tao": "zzyzxlab.github.io/tao.js", - "tap-flux": "technologyadvice.github.io/tap-flux", // noCF? (don´t add this in a new PR) - "tapestry-wp": "shortlist-digital.github.io/tapestry-wp", + "tapi": "sinisimattia.github.io/tapi", "tara": "shakyatara.github.io", + "tarant": "tarantx.github.io", "taro": "nervjs.github.io/taro-website", "tart": "tart.github.io/tartJS", // noCF? (don´t add this in a new PR) "tatsumaki": "mrjacz.github.io/tatsumaki.js", + "tauber": "ranjithrd.github.io/tauber", "taufik-nurrohman": "taufik-nurrohman.github.io", - "taylorreis": "taylorreis.github.io", + "taxi": "craftedbygc.github.io/taxi", "tayyab": "itayyab.github.io", + "tclock": "treeentertainment.github.io/tclock", + "tdhandler": "hosting.gitbook.com", "tead": "teadjs.github.io", + "tech-human-id": "abhisekp.github.io/tech-human-id", + "techthinker": "tech-thinker.github.io", + "techxuexi": "techxuexi.netlify.app", "techy": "hosting.gitbook.com", - "teddy": "teddytags.github.io/website", + "teddy": "alias.zeit.co", // noCF + "tejas": "harshsinghdev.github.io/tejas", "telaviv": "dustin-h.github.io/telaviv", // noCF? (don´t add this in a new PR) "telegraf": "telegraf.github.io/telegraf", // noCF? (don´t add this in a new PR) + "telegram": "yuvapoojary.github.io/telegram.js-website", "teletype": "keyvank.github.io/teletype.js", "temme": "shinima.github.io/temme", + "template-pro": "template-pro.github.io", + "templates.linksharer": "linksharer.github.io/Templates", // noCF + "tenvoy": "togatech.github.io/tEnvoy", "tequila": "tequila-js.github.io", "term-web": "zhw2590582.github.io/term-web", + "termestry": "redyetidev.github.io/termestry", "termi": "wearetermi.github.io/termi", "terminal": "gottox.github.io/terminal.js", // noCF? (don´t add this in a new PR) + "tess": "det171.github.io/Tess.js", "testframe": "testingrequired.github.io/testframe", + "testio": "yavrumian.github.io/test.io", + "tetr": "proximitynow19.github.io/TETR.JS", + "text-encryption-tool": "tanvishgg.github.io/Text-Encryption-Tool", + "text-to-handwriting": "ankit-chaubey.github.io/text-to-handwriting", "textillate": "jschr.github.io/textillate", // noCF? (don´t add this in a new PR) - "texy": "egoist.github.io/texy", + "textmark": "sahilister.github.io/textmark", + "tgind": "panditsiddharth.github.io/tginddoc", + "tgsnake": "cname.vercel-dns.com", // noCF + "tgx-core": "tgx-core.github.io/website", "thea": "idokutela.github.io/thea", "thegrid": "antoniandre.github.io/grid", - "thehorizon": "kavanmevada.github.io/the-horizon-blog", + "thema": "themakit.github.io", + "theme-next": "hexo-theme-next.netlify.app", "themoviedb": "chrisenytc.github.io/themoviedb", // noCF? (don´t add this in a new PR) + "thenandnow": "devdavmen.github.io/then-and-now", "theorem": "arguiot.github.io/TheoremJS", "thepeachtimes": "thepeachtimes.github.io", - "theshellproject": "theshellproject.github.io", "thi": "ngomjnhthj.github.io/thi", "thinkdigital": "tomowens08.github.io/thinkdigital", + "threadly": "spideyzac.github.io/Threadly", "threads": "andywer.github.io/threads.js", + "threebody": "cnzc.github.io/threebody", + "thrive": "aarvinr.github.io/thrive", + "ths": "ths-fe.github.io", "thundercats": "thundercatsjs.github.io/thundercats", // noCF? (don´t add this in a new PR) "tictactoe": "jeff-tian.github.io/tic-tac-toe-ai", + "tiden": "tidenjs.netlify.app", "tidy": "tidy-js.github.io", - "tie": "tie-team.github.io", - "tights": "tights.netlify.com", + "tik": "nascjoao.github.io/tikjs", "timeout": "anshuman-verma.github.io/setTimeout", + "timer": "timerjsorg.netlify.app", "timerizer": "callumacrae.github.io/timerizerJS", // noCF? (don´t add this in a new PR) + "timesheet": "nishantpainter.github.io/timesheet", + "timezones": "ultirequiem.github.io/timezones", "tina": "tinajs.github.io/tina", + "tinance": "redgroot.github.io/tinance", "tint": "tintjs.github.io", // noCF? (don´t add this in a new PR) + "tiny-swiper": "joe223.github.io/tiny-swiper", + "tinylibs": "arthurfiorette.github.io/tinylibs", "tinylinux": "e8johan.github.io/tiny-js", // noCF? (don´t add this in a new PR) - "title": "sawyerbx.github.io/titlejs", + "tinymanager": "nishantpainter.github.io/tiny-manager", + "tit": "wenjiasen.github.io/tit", "tixol": "vcxiz.github.io/tixol", + "tixte": "macedonga.github.io/tixte.js", "tiza": "pd4d10.github.io/tiza", - "tmr": "ttttmr.github.io", + "tjys": "qikaile.github.io/tjys-notes", + "tmr": "tmr-blog.netlify.app", + "tnt": "tntjs-docs.netlify.app", "toad": "wnda.github.io/toad", + "todura": "558fbb1a-520a-4a79-ac67-3c944e24e655.id.repl.co", + "tom": "cname.vercel-dns.com", // noCF + "tom-select": "orchidjs.github.io/tom-select", "tooling": "slikts.github.io/tooling", - "tom": "tom-microservice.netlify.com", + "toolkit": "cf3dc0c9-7e61-46e1-ad44-76c862c41b81.id.repl.co", // noCF "tools-kit": "blackb1rd-development.github.io/tools-kit", + "toolzar": "toolzar.netlify.app", "topbot": "resign05.github.io/TobWebsite", + "topgg": "topgg-node-sdk-docs.netlify.app", "tori": "boostcode.github.io/torijs", "torino": "torinojs.github.io", // noCF? (don´t add this in a new PR) "torlondev": "torlondev.github.io", "torpedo": "divysrivastava.github.io/torpedo.js", - "tp": "jottocraft.github.io/tp", "trace": "andreasmadsen.github.io/trace", + "trackymouse": "1j01.github.io/tracky-mouse", + "trakas": "trakas.github.io", + "translate": "xuanzhi33.github.io/translate.js", "transposer": "francesco-dipi.github.io/transposer", - "trello": "wr1ght.github.io/trellojs", + "trestle": "whiskeedev.github.io/trestle", "treviso": "trevisojs.github.io", // noCF? (don´t add this in a new PR) - "trevorgk": "trevorgk.github.io", // noCF? (don´t add this in a new PR) "trier": "creimers.github.io/trier", - "trilogy": "trilogy.netlify.com", //noCF - "trinity": "marcus-sa.github.io/trinity-js", + "trilogy": "trilogy.netlify.app", // noCF + "trivia": "gubareve.github.io/triviabot-docs", + "tropical": "tropicaljs.netlify.app", // noCF "troxel": "troxeljs.github.io", "troy": "troyxun.github.io", + "trpc": "trpc-node.github.io/trpc.js.org", "true-myth": "chriskrycho.github.io/true-myth", + "truecaller": "sumithemmadi.github.io/truecallerjs", + "truncate": "remanufacturing.github.io/react-truncate", + "trung": "thientrung.github.io", "try-catch-finally": "c24w.github.io/try-catch-finally.js", - "trygit": "trygit.netlify.com", - "ts-creator": "ts-creator.netlify.com", + "trygit": "trygit.netlify.app", + "ts-creator": "ts-creator.netlify.app", + "ts-dax": "lukecarr.github.io/ts-dax", + "ts-module-browser": "iam-medvedev.github.io/ts-module-browser", "ts-react-boilerplate": "lapanti.github.io/ts-react-boilerplate", "ts2jsdoc": "spatools.github.io/ts2jsdoc", // noCF? (don´t add this in a new PR) + "tsch": "type-challenges.netlify.app", "tsdi": "knisterpeter.github.io/tsdi", - "tslib-cli": "hosting.gitbook.com", + "tsemrtd": "li0ard.github.io/tsemrtd", + "tslog": "fullstack-build.github.io/tslog", + "tsubasa": "tsubasa.netlify.app", + "tsx-browser-compiler": "rexskz.github.io/tsx-browser-compiler", + "tt": "redyetidev.github.io/terminaltools", "ttag": "ttag-org.github.io/ttag", "ttgprotect": "ttgprotect.github.io", "ttt": "lukechu10.github.io/TicTacToe-Minimax", "tui-nuxt": "hosting.gitbook.com", // noCF - "tuplet": "meleyal.github.io/tuplet", + "tulsa": "thatguysam.github.io/tulsa.js", "turali": "caglarturali.github.io", "turbo": "turbo.github.io", - "tux": "tux.gitbooks.io/docs", + "turboprisma": "cname.vercel-dns.com", // noCF + "tusk": "cname.vercel-dns.com", // noCF + "tw-themes": "kevinast.github.io/tw-themes", + "twallpaper": "crashmax-dev.github.io/twallpaper", "twcopy": "the94air.github.io/twcopy", "tweed": "tweedjs.github.io", "tweetnacl": "dchest.github.io/tweetnacl-js", "twentyfive": "luckyshot.github.io/twentyfive", + "twikoo": "imaegoo.github.io/twikoo", + "twinspark": "piranha.github.io/twinspark-js", + "twitch": "promisependingapis.github.io/twitch.js", + "twitchx": "cursorsdottsx.github.io/twitchx", + "twitter": "twitterjs.github.io/website", "two": "jonobr1.github.io/two.js", + "twt": "koj-co.github.io/twt", + "twurple": "twurple.github.io", "tydel": "fahad19.github.io/tydel", // noCF? (don´t add this in a new PR) "typeahead": "corejavascript.github.io/typeahead.js", "typed-ui": "pi-cubed.github.io/typed-ui", - "typeless": "typeless.netlify.com", + "typedi": "freshgum-bubbles.github.io/typedi", + "typeless": "typeless.netlify.app", + "typerinth": "kartoffelchipss.github.io/Typerinth", + "typerun": "symsmith.github.io/typerun", "typescript-play": "agentcooper.github.io/typescript-play", + "typewriter": "nicesapien.github.io/typewriter.js", + "tyshemo": "tangshuang.github.io/tyshemo", + "tyvn": "milo123459.github.io/tyvn", "u": "hanul.github.io/UJS", // noCF? (don´t add this in a new PR) + "uaparser": "faisalman.github.io/ua-parser-js", "uav": "unearth-inc.github.io/uav", + "ubereats": "korobaka.github.io/ubereats.js", "ubuntu-hideout": "bytecommander.github.io/ubuntu-hideout", "udnisap": "udnisap.github.io", + "ui": "caracal7.github.io/ui.js", + "ui-pack": "ui-pack.netlify.app", + "ulka": "ulkajs.github.io", // noCF "ulog": "download.github.io/ulog", "ultcombo": "ultcombo.github.io", + "ulti": "ultirequiem.github.io", + "ultimatemedia": "ultimatemediaorg.github.io", + "ultraviolet": "blobthekat.github.io/ultraviolet", + "ultrax": "karimx32.github.io/UltraX-Package", "umair": "mumairofficial.github.io", + "umentor": "umentor.github.io/umentor", "umm": "umm233.github.io", "underbase": "sundowndev.github.io/underbase", - "undercut": "the-spyke.github.io/undercut", - "underline": "brightskyz.github.io/underline", + "undercut": "undercut.netlify.app", "uneditable": "iamcristye.github.io/Uneditable.js", + "uneventful": "pjeby.github.io/uneventful", "unexpected": "unexpectedjs.github.io", // noCF? (don´t add this in a new PR) "uni": "arcadiogarcia.github.io/UNIJS", // noCF? (don´t add this in a new PR) + "uni-helper": "uni-helper.netlify.app", + "unicorn": "mirai-explorer.github.io/unicorn", "unicornly": "unicornly.github.io/unicornly", + "unique-session": "molaga.github.io/unique-session", "units": "stak-digital.github.io/units", - "unoconv": "blog.ryanwu.me/Unoconv-Promise", + "universal-api": "raxjs.github.io/universal-api", + "unle": "lochyj.github.io/unle", + "uno": "theatom06.github.io/uno.js", + "unoconv": "blog.ryanwu.me", + "unreal": "sprayxe.github.io/unreal.js.org", "unsafe": "unsafely.github.io/unsafe.js", "up": "codefeathers.github.io/up", - "uppload": "uppload.netlify.com", + "updates.flightpkg": "cname.vercel-dns.com", // noCF + "updevs-db": "up-devs.github.io/db-docs", + "uplo": "jpalumickas.github.io/uplo", + "uppload": "uppload.netlify.app", + "upptime": "upptime.github.io/upptime.js.org", "upresent": "bobbybee.github.io/uPresent", // noCF? (don´t add this in a new PR) + "upset": "upsetjs.github.io", "uptime": "intelligo-systems.github.io/uptime.js", - "urban": "snekjs.github.io/urban.js", - "url-pages": "url-pages.github.io", - "use": "use-js.github.io/use", - "useworker": "useworker.netlify.com", + "urmom": "urmomjs.github.io/urmom.js", + "use-bootstrap": "use-bootstrap.github.io", + "use-bootstrap-dialog": "use-bootstrap.github.io/use-bootstrap-dialog", + "use-bootstrap-select": "use-bootstrap.github.io/use-bootstrap-select", + "use-bootstrap-tag": "use-bootstrap.github.io/use-bootstrap-tag", + "use-bootstrap-toaster": "use-bootstrap.github.io/use-bootstrap-toaster", + "use-cookie-consent": "use-cookie-consent.github.io/use-cookie-consent-docs", + "use-github": "ultirequiem.github.io/use-github", + "usedapp": "crypto-meta.github.io/usedapp.js.org", + "useful-apis": "yuu0007.github.io/useful-apis", + "useless-machine": "pakastin.github.io/useless-machine", + "userfetch": "userfetch.github.io", + "usernamegen": "aryan02420.github.io/usernamegen", + "useselectify": "cname.vercel-dns.com", // noCF + "usestatemachine": "cassiozen.github.io/useStateMachine", + "usetable-ahooks": "usetable-ahooks.surge.sh", + "useworker": "useworker.netlify.app", "ushakov": "ushakov-igor.github.io/ushakov", - "ushio": "ushio.netlify.com", + "ushio": "ushio.netlify.app", "usv": "usvformat.github.io", + "utc": "pythonscratcher.github.io/utc", + "utilmonkey": "cyberdev101.github.io/utilmonkey-docs", + "utils-core": "dev-pengi.github.io/utils-core", + "utm": "espressofan.github.io/utm", "utscrooms": "sunakujira1.github.io/UTSCRooms", "uuid": "rumkin.github.io/uuid", "uvcharts": "imaginea.github.io/uvCharts", // noCF? (don´t add this in a new PR) "v-charts": "elemefe.github.io/v-charts", - "v-decorators": "v-decorators.netlify.com", + "v-decorators": "v-decorators.netlify.app", + "v3.swup": "swup-v3-docs.netlify.app", // noCF "v4.webpack": "webpack.github.io/v4.webpack.js.org", // noCF - "v4f": "v4f.netlify.com", + "v4f": "v4f.netlify.app", "vac": "mlinquan.github.io/vue-awesome-countdown", + "valence-native": "valence-native.github.io/valence-native", "valentin": "valentinvieriu.github.io", // noCF? (don´t add this in a new PR) "validarium": "lundegaard.github.io/validarium", "validator": "ppoffice.github.io/validator.js", // noCF? (don´t add this in a new PR) "valine": "xcss.github.io/valine", "valirator": "massive-angular.github.io/valirator", + "valobot": "misly16.github.io/ValoBotsite", + "value-enhancer": "crimx.github.io/value-enhancer", "vanessa": "vanessa219.github.io/vanessa", "vanilla": "haeresis.github.io/vanilla-js-dom", "vanilla-picker": "sphinxxxx.github.io/vanilla-picker", + "vanilla-swr": "droyson.github.io/vanilla-swr", + "vanillaboot": "eyallior.github.io/vanillaboot", + "vanillarouter": "vanillarouter.github.io", + "vansul": "vansul.github.io", + "vant-react-native": "youngjuning.github.io/vant-react-native", + "vanya": "cname.vercel-dns.com", // noCF + "vapory": "vaporyjs.github.io", + "various": "variousjs.github.io/website", + "varvara": "marcmarine.github.io/varvara", "vavilon": "vavilon-js.github.io", "vayne": "vaynejs.github.io", "vbuild": "egoist.github.io/vbuild", + "vcodes": "elitenover.github.io/vCodes-Docs", + "vdcs": "hopae-official.github.io/Verifiable-Digital-Credentials", "ve-table": "xiguaxigua.github.io/ve-table", + "vega": "cname.vercel-dns.com", // noCF + "velite": "zce.github.io/velite", + "velt": "veltjs.github.io", "vendywira": "vendywira.github.io", + "vento": "ventojs.github.io/vento", + "venture": "cname.vercel-dns.com", // noCF "verifyr": "arze1.github.io/verifyr-site", "verse": "druidic.github.io/verse", + "vesselize": "vesselize.github.io/docs", + "vest": "vestjs.netlify.app", "veza": "kyranet.github.io/veza", + "vfm": "meshesha.github.io/VisualFormMaker.github.io", "viav": "brandondyer64.github.io/viav", "vicis": "r37r0m0d3l.github.io/vicis", "vico": "bohdantkachenko.github.io/vico", // noCF? (don´t add this in a new PR) - "victor": "mrdatastorage.github.io/victor", + "vidclip": "cname.vercel-dns.com", // noCF "video-react": "video-react.github.io", "vigour": "mokunshao.github.io/vigour", - "viki": "viki-org.github.io/viki-web-ui", "villain": "btzr-io.github.io/Villain", - "vinimdocarmo": "vinimdocarmo.github.com", // noCF? (don´t add this in a new PR) + "vinimdocarmo": "vinimdocarmo.github.io", // noCF? (don´t add this in a new PR) + "vinton": "vinton.github.io/website", "viperhtml": "viperhtml.github.io", + "virtual-clock": "dvdgiessen.github.io/virtual-clock", "virtual-keyboard": "virtual-keyboard-javascript.github.io", "visual": "idescat.github.io/visual", "visualize-it": "kevinast.github.io/visualize-it", "visualized-execution": "codaisseur.github.io/visualized-execution", "visualnovel": "selcher.github.io/visualnoveljs", // noCF? (don´t add this in a new PR) - "viveksharmaui": "viveksharmaui.github.io/portfolio", + "vitedge": "vitedge.netlify.app", + "vitery": "viteryjs.github.io/vitery", + "viteshell": "henryhale.github.io/viteshell", + "vitestory": "melishev.github.io/vitestory", "vk-x": "vk-x.github.io", + "vlite": "vlitejs.github.io", + "vlr": "vlrjs.github.io/website", "vncz": "xvincentx.github.io/vncz", - "volantis": "xaoxuu.github.io/volantis.js.org", + "vnpay": "cname.vercel-dns.com", // noCF + "vocab": "battleofplassey.github.io/ministry-of-vocabulary", + "volantis": "cname-china.vercel-dns.com", // noCF + "volantis-x": "volantis-x.github.io", "voloshins": "voloshins.github.io", // noCF? (don´t add this in a new PR) "vorpal": "dthree.github.io/vorpal", // noCF? (don´t add this in a new PR) + "vortex": "puntillol59.github.io/vortex", "voxelcss": "jhwohlgemuth.github.io/voxelcss", - "vrv": "cloudflare-to-cloudflare.readthedocs.io", + "vscode-api": "youngjuning.github.io/vscode-api", + "vscode-api-cn": "youngjuning.github.io/vscode-api-cn", "vscode-apielements": "xvincentx.github.io/vscode-apielements", - "vssue": "vssue.netlify.com", + "vssue": "vssue.netlify.app", + "vuapix": "rwaness.github.io/vuapix", "vue": "vuejs.github.io/vue.js.org", "vue-admin": "mingdev123.github.io/vue-admin", "vue-aplayer": "sevenoutman.github.io/vue-aplayer", - "vue-coffee": "vue-coffee-guide.netlify.com", + "vue-auth3": "tachibana-shin.github.io/vue-auth3", + "vue-coffee": "vue-coffee-guide.netlify.app", "vue-core": "triotech-fr.github.io/vue-core", + "vue-db": "taowen.github.io/vue-db", + "vue-diagram-editor": "max-kut.github.io/vue-diagram-editor", + "vue-diagrams": "gwenaelp.github.io/vue-diagrams", "vue-goodshare": "koddr.github.io/vue-goodshare", - "vue-land": "vue-land.netlify.com", + "vue-magnifier": "websitebeaver.github.io/vue-magnifier", "vue-mdc": "na-west1.surge.sh", "vue-minesweeper": "disjfa.github.io/vue-minesweeper", "vue-multiselect": "shentao.github.io/vue-multiselect", "vue-polkadot": "vue-polkadot.github.io", + "vue-redux": "vue-redux-docs.netlify.app", // noCF "vue-roast": "kronicker.github.io/vue-roast", "vue-route-timeline": "disjfa.github.io/vue-route-timeline", - "vue-showdown": "vue-showdown.netlify.com", - "vue-svg-loader": "vue-svg-loader.netlify.com", + "vue-showdown": "vue-showdown.netlify.app", + "vue-svg-loader": "vue-svg-loader.netlify.app", + "vue-tiny-validate": "vue-tiny-validate.netlify.app", "vue-treeselect": "riophae.github.io/vue-treeselect", + "vue-utterances": "glitch.edgeapp.net", "vuejsindy": "vuejsindy.github.io", - "vuelidate": "vuelidate.netlify.com", + "vuelidate": "vuelidate.netlify.app", "vuelog": "myst729.github.io/Vuelog", - "vueuse": "vueuse.netlify.com", - "vuikit": "vuikit.netlify.com", - "vuongdothanhhuy": "vuongdothanhhuy.github.io", // noCF? (don´t add this in a new PR) - "vxv": "vxv.netlify.com", + "vuepress-theme-cool": "friendlyuser.github.io/vuepress-theme-cool", + "vuikit": "vuikit.netlify.app", + "vulkava": "hosting.gitbook.io", // noCF + "vxv": "vxv.netlify.app", + "w2d": "bananahackers.github.io/w2d", // noCF "w4ctech": "w4ctech.github.io", + "w4j1e": "w4j1e.github.io", + "wahtson": "wahtson.github.io", + "waline": "walinejs.github.io", + "wangdabao": "wangdabaoqq.github.io/me", + "wangdabao-doc": "wangdabaoqq.github.io/documents", + "wangdabao-map": "wangdabaoqq.github.io/map-transform", "wanna": "mkermani144.github.io/wanna", - "wargamer": "hkwu.github.io/wargamer", + "warlock": "warlockjs.github.io/documentation", "warrior": "olistic.github.io/warriorjs", "warship": "vflopes.github.io/warship", + "waseel": "waseeld.github.io/waseeld", + "wasm": "richardanaya.github.io/js-wasm", "watch": "ducin.github.io/watchjs.org", // noCF? (don´t add this in a new PR) "watchfs": "prateekkumarweb.github.io/watchfs", + "waterfall": "waterblock79.github.io/waterfall", "watermark": "fredy.github.io/watermark", "wc": "bryansha.github.io/wc", "wcfactory": "elmsln.github.io/wcfactory.js.org", "wdd": "wangduanduan.github.io", + "weather": "phanendraguptha.github.io/weather", "weaver": "maxkfranz.github.io/weaver", // noCF? (don´t add this in a new PR) + "web-sandbox": "web-sandbox-js.github.io/web-sandbox-website", + "web-widget": "web-widget.github.io", + "web.quizlet": "redyetidev.github.io/Quizlet.JS-Web", // noCF "web230": "paylesworth.github.io/web230", "webassembly": "xtuc.github.io/webassemblyjs", - "webmetry": "comongroup.github.io/webmetry", + "webbuild": "fiftys7vencode.github.io/webbuild", + "webconnect": "nuzulul.github.io/webConnect.js", + "webfetch": "c1tizen.github.io/webfetch", + "webmc": "michaljaz.github.io/webmc", "webminer": "web-miner.github.io", + "webos": "dynamiccode1.github.io/webos", "webpack": "webpack.github.io/webpack.js.org", "webpack-config-plugins": "namics.github.io/webpack-config-plugins", "webpack-inspect": "alexmost.github.io/webpack-inspect", - "websocket-client": "marcelcoding.github.io/websocket-client", - "wechaty": "hosting.gitbook.com", - "wedgetail": "wedgetail.netlify.com", + "webpack-stats": "v-webpack.netlify.app", + "webpeer": "nuzulul.github.io/webpeerjs", + "websheet": "pierreavn.github.io/websheetjs", + "wechatpay": "thenorthmemory.github.io/wechatpay.js.org", + "wechaty": "cdn.chatie.io", // noCF + "wedgetail": "wedgetail.netlify.app", "weekly": "xdimh.github.io/weekly", + "welcome": "edapm.github.io/welcomejs", "wepl": "obnoxiousnerd.github.io/wepl-website", "wfplayer": "zhw2590582.github.io/WFPlayer", "wglt": "codyebberson.github.io/wglt", "whadido": "jokester.github.io/whadido", + "whatscode": "jastinxyz.github.io/whatscode.js", + "whatsnext": "cname.vercel-dns.com", // noCF + "whatsup": "whatsup.github.io", + "which-node": "tobysmith568.github.io/which-node-js", + "whistle": "whistle-lang.github.io/website", "whiteboard": "yhozen.github.io/whiteboard", + "wi": "rstee.serv00.net", "wice": "yulioaj290.github.io/wice.js", + "wifidrop": "nuzulul.github.io/wifidrop", "wii": "andrewplus.github.io/Wii.JS", - "wiki": "wikijs.netlify.com", // noCF + "wiki": "wiki-js-org.netlify.app", // noCF "wikidata-elements": "lisongx.github.io/wikidata-elements", + "wikii": "xamyl.github.io/Wikii", "wildfire": "cheng-kang.github.io/wildfire", + "william": "wdhdev.github.io/william.js", // noCF "willy": "willyarisky.github.io/willy", "windows": "munchkinhalfling.github.io/wasm-windows", + "wiot": "iotcat.github.io/wIoT", + "wire": "wire-ts.github.io", "with-immutable-props-to-js": "tophat.github.io/with-immutable-props-to-js", "within": "eric-brechemier.github.io/within", // noCF? (don´t add this in a new PR) "wiz": "karimsa.github.io/wiz", // noCF - "wo": "iguanren.github.io/wo", + "wizzl": "wizzldev.github.io/wizzl.js", + "wjy": "wjy20030407.github.io", + "wk": "alperr.github.io/wk", + "wolvesville": "wolvesvillejs.github.io/website", + "wonderest": "wonderest.github.io", + "wonderfulcv": "wonderfulcv.netlify.app", "woodsman": "haximilian.github.io/woodsman", "wooyun": "jiji262.github.io/wooyun_articles", + "woq": "nicamoq.github.io/WoqHentai", "wordywordy": "sverweij.github.io/wordywordy", + "workers": "worker-tools.github.io/workers.js.org", + "worksnake": "worksnake.github.io", "wowufoundme": "wowufoundme.github.io", + "wpwebpack": "oblakstudio.github.io/wpwebpack", + "wq": "wqjs.alwaysdata.net", "writebar": "alexander-shvets.github.io/writebar", - "wthunting": "sawyerbx.github.io/wthunting", + "ws-debug": "yshenze.github.io/ws-debug", // noCF + "wss": "iguanren.github.io/wss", + "wstool": "sy-records.github.io/wstool", // noCF + "wugenqiang": "wugenqiang.github.io/wugenqiang.js.org", + "www.next-auth": "cname.vercel-dns.com", // noCF "wyfe": "wangyuanstudio.github.io/WYFE", // noCF? (don´t add this in a new PR) "wynncraft": "frawolf.github.io/wynncraft.js", "wysc": "coffeebank.github.io/wysc-vue", + "wysi": "mdbassit.github.io/Wysi", + "wz": "wangzhen-chn.github.io/wz", + "x": "nikhiljohn10.github.io/x.js", + "x.gametime": "parking-master.github.io/Gametime.js-X", // noCF + "xatom": "xatomteam.github.io/docs", + "xchart": "cname.vercel-dns.com", // noCF + "xdtoast": "mininxd.github.io/xdtoast", "xen": "hosting.gitbook.com", + "xendb": "notmarx.github.io/Xen.db", + "xhemj": "xhemj.now.sh", // noCF "xhy": "xhy.github.io", + "xi102": "xi102.github.io", "xiangqiz": "xiangqiz.github.io/Hello", + "xiaolan": "mcxiaolan.github.io", + "xiyueta": "313801120.github.io/xiyueta", "xprmntl": "xprmntl.github.io", // noCF? (don´t add this in a new PR) + "xs-dev": "hipsterbrown.github.io/xs-dev", + "xsai": "moeru-ai.github.io/xsai", "xss": "tennc.github.io/xss", "xstate": "davidkpiano.github.io/xstate", + "xterminal": "henryhale.github.io/xterminal", "xto6": "mohebifar.github.io/xto6", // noCF? (don´t add this in a new PR) "xtype": "lucono.github.io/xtypejs", // noCF? (don´t add this in a new PR) + "y2j": "ultirequiem.github.io/y2j", "y86": "quietshu.github.io/y86", // noCF? (don´t add this in a new PR) "yadl": "yadljs.github.io", "yagolopez": "yagolopez.github.io", - "yakanak": "yakanaknews.netlify.com", + "yak": "cname.vercel-dns.com", // noCF + "yake": "yakeing.github.io/HexoBlog", "yamdbf": "zajrik.github.io/yamdbf", + "yan": "yvesyc.github.io/yan-js-org", + "yana": "lukasbach.github.io/yana-homepage", "yargs": "yargs.github.io", // noCF? (don´t add this in a new PR) + "yay-machine": "maurice.github.io/yay-machine", + "yeetedmeme": "greymesa.github.io/greymesasite2", + "yeisson-osorno": "yeissonosorno.github.io/portfolio", "yennj12": "yennanliu.github.io", - "yf": "yafey.coding.me", + "yh": "hksat.github.io", "yiff": "codepupper.github.io/yiff", - "yigit": "yigitusta.github.io", - "yizao": "ssttii.github.io", "ymlair": "ymlair.github.io/TimestampHumanDemo", "yolog": "jitesoft.github.io/yolog", - "youngjuning": "youngjuning.github.io", + "youngjuning": "cname.vercel-dns.com", // noCF "youtim": "mortonfox.github.io/YouTim", // noCF? (don´t add this in a new PR) "youtube-box": "lucasmonteverde.github.io/youtube-box", // noCF? (don´t add this in a new PR) + "youtube-ext": "zyrouge.github.io/youtube-ext", "youtube-lite": "9oelm.github.io/youtube-lite", + "yt-dislikes-viewer": "pgamerx.github.io/yt-dislikes-viewer", + "yt-quota-manager": "arnav-kr.github.io/yt-quota-manager", "yu": "yuxizhe.github.io/yu", - "yuigahama": "project-yuigahama.github.io/docs", + "yuko": "notmarx.github.io/Yuko-Website", + "yup-phone": "abhisekp.github.io/yup-phone", + "yurd": "thebigbot0000.github.io/yurd.js.org", "yusril": "yusrilhs.github.io", // noCF + "yuuka": "yuukajs.github.io/docs", "yuye": "cyea.github.io", "yvm": "tophat.github.io/yvm", + "zaimu": "zaimu.netlify.app", // noCF "zaporizhzhia": "zaporizhzhiajs.github.io", - "zea-cad": "zeainc.github.io/zea-cad", - "zea-engine": "zeainc.github.io/zea-engine", - "zea-ux": "zeainc.github.io/zea-ux", "zed": "paul-browne.github.io/Zed-framework", - "zeit": "urvinh.github.io", "zen": "tomelam.github.io/zen", - "zentor": "zentor.github.io", + "zenfuse": "zenfuse.github.io/zenfuse.js", "zephyr": "zephyr-dh.github.io/zephyr", + "zero-dependency": "zero-dependency.github.io/zero-dependency", + "zeroclick": "studiomotio.github.io/zeroclick", "zeroframe": "filips123.github.io/ZeroFrameJS", + "zh-cn-ydk": "ydkjsy-zh.netlify.app", "zh-hans.single-spa": "single-spa.github.io/zh-hans.single-spa.js.org", // noCF + "zh.mobx": "cname.vercel-dns.com", // noCF "zhangnew": "zhangnew.github.io", "zhaomenghuan": "zhaomenghuan.github.io", - "zhd": "zhDmitry.github.io", - "zhenbang": "wzb1244.github.io", + "zhd": "zhdmitry.github.io", "zignis": "zhike-team.github.io/zignis", + "zilo": "axorax.github.io/zilo", + "zizhujy": "jeff-tian.github.io/zizhujy", "zodiac": "indus.github.io/Zodiac", // noCF? (don´t add this in a new PR) "zodiacsigns": "dipanshkhandelwal.github.io/my-zodiac-sign", "zombie": "assaf.github.io/zombie", // noCF? (don´t add this in a new PR) - "zonayed": "zonayedpca.github.io/js.zonayed.me", - "zplugins": "zlanguage.github.io/plugin-docs", - "zty": "zetaoyang.github.io", + "zova": "cabloy.github.io/zova", + "zustand-cn": "cname.vercel-dns.com", // noCF + "zyh": "zyh-chopper.github.io/zyh", + "zykj": "cname.vercel-dns.com", // noCF + "zyx": "zyx.alwaysdata.net", "zyy": "zyyou.github.io/notes" /* - * please don't add your subdomain records down here! - * insert them in alphabetical order to help reduce merge conflicts. - * <3 - */ + * please don't add your subdomain records down here! + * insert them in alphabetical order to help reduce merge conflicts. + * <3 + */ } diff --git a/ns_active.js b/ns_active.js index 3f19f5e2776..bc36fe38ea1 100644 --- a/ns_active.js +++ b/ns_active.js @@ -6,17 +6,23 @@ * * Second level NS records makes it possible for subdomain owners to redirect to another DNS provider. * This option has potential security issues (e.g. if you use another DNS provider to add MX records to route your email traffic) - * and is only meant for advanced users. + * and is only meant for advanced users. * * You should avoid this option if you only want a JS.ORG subdomain!!! * FYI: https://github.com/js-org/js.org/issues/2890 */ - - var ns_active = { + +var ns_active = { "appshelf": ["ns31.cloudns.net", "ns32.cloudns.net", "ns33.cloudns.net", "ns34.cloudns.net"], "castyte": ["ns31.cloudns.net", "ns32.cloudns.net", "ns33.cloudns.net", "ns34.cloudns.net"], - "engine262": ["ns5.he.net", "ns4.he.net", "ns3.he.net", "ns2.he.net"], - "ruby": ["ns11.cloudns.net", "ns12.cloudns.net", "ns13.cloudns.net", "ns14.cloudns.net"], + "engine262": ["ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"], + "lolifamily": ["glen.ns.cloudflare.com", "melany.ns.cloudflare.com"], + "mermaid": ["dns1.p04.nsone.net", "dns2.p04.nsone.net", "dns3.p04.nsone.net", "dns4.p04.nsone.net"], + "ruby": ["alexis.ns.cloudflare.com", "connie.ns.cloudflare.com"], "samplasion": ["ns31.cloudns.net", "ns32.cloudns.net", "ns33.cloudns.net", "ns34.cloudns.net"], "shebang": ["dns1.p01.nsone.net", "dns2.p01.nsone.net", "dns3.p01.nsone.net", "dns4.p01.nsone.net"] - } +} + +/* + * The allocation of new ns records is discontinued (at the moment) + */ diff --git a/records_restricted.js b/records_restricted.js index b3b06455be5..4d77b4b6e06 100644 --- a/records_restricted.js +++ b/records_restricted.js @@ -17,11 +17,13 @@ var cnames_restricted = [ "(1/2/3/...)", + "(a/b/c/...)", "a11y", "about", "account(s)", "ad(s)", "admin(s)", + "ai", "answer(s)", "api(s)", "app(s)", @@ -29,6 +31,7 @@ var cnames_restricted = [ "array(s)", "asm", "async", + "awesome", "backup(s)", "bar", "base", @@ -65,6 +68,7 @@ var cnames_restricted = [ "crew(s)", "css", "data", + "db", "ddns", "deal", "debug", @@ -76,6 +80,7 @@ var cnames_restricted = [ "director(y/ies)", "dns", "doc(s)", + "dom", "domain(s)", "donate(s)", "dyn", @@ -126,9 +131,11 @@ var cnames_restricted = [ "js", "json", "l10n", - "learn", + "learn(ing)", "legal(s)", "lesson(s)", + "libraries", + "lib(rary)", "license(s)", "like(s)", "link(s)", @@ -183,6 +190,7 @@ var cnames_restricted = [ "raw", "readme(s)", "regex(p)", + "regist(er/ration/ered)", "remote", "require", "rest", @@ -233,7 +241,7 @@ var cnames_restricted = [ "uri(s)", "url(http://github.com/s)", "user(s)", - "utility", + "util(s/ity/ities)", "validate", "var(s)", "virtual",