Convert Github Repo URL to Github Pages
Convert from
'https://github.com/rohmanhm/gh-to-pages' // support with https protocol
'http://github.com/rohmanhm/gh-to-pages' // support with http protocol
'github.com/rohmanhm/gh-to-pages' // support without protocol
'[email protected]:rohmanhm/gh-to-pages.git' // support ssh url
to
'https://rohmanhm.github.io/gh-to-pages'
- NPM
npm install gh-to-pages --save
- Yarn
yarn add gh-to-pages
// es6
import ghToPages from 'gh-to-pages'
// commonjs
const ghToPages = require('gh-to-pages')
ghToPages('https://github.com/rohmanhm/gh-to-pages') // result https://rohmanhm.github.io/gh-to-pages
MIT @rohmanhm