@markbattistella/markdown-safe-link
v1.0.7
Published
Check the links used in your apps are safe
Downloads
7
Readme
Markdown Safe Web Browsing
Background
I started with this tweet by @seanallen where he added a URL into a YouTube video description.
The URL became compromised within the week of adding it, and his channel was flagged with strike 1.
I realised there isn't anything out there to prevent this from happening to anyone's repository.
Usage
Install the module from
npm
# locally npm i @markbattistella/markdown-safe-link # globally npm i @markbattistella/markdown-safe-link -g
Run it from your terminal
markdown-safe-link \ --api="<YOUR_API_KEY_HERE>" \ --dir="~/projects/my-docs/" \ --replace="~~UNSAFE~~"
Github action
If you want to use this as part of your repository there is also an action you can use.
Requirements
You need to get your own API for Google Safe Browsing as there are limits to the number of calls made.
Configuration
| Name | Description |
|------------|---------------------------------|
| dir
| The directory to scan md files |
| api
| Google API for scanning URLs |
| replace
| What to replace the URLs with |
| proxy
| Are you behind a proxy server |
| url
| Proxy url address or IP address |
| port
| Proxy port number |
| username
| Username if your proxy has auth |
| password
| Password if your proxy has auth |
| dry
| Don't actually re-write files |
| help
| Display the help screen |
Full command line
markdown-safe-link \
--api="<YOUR_API_KEY_HERE>" \
--dir="~/projects/my-docs/" \
--replace="~~UNSAFE~~" \
--proxy \
--url="127.0.0.1" \
--port="3128" \
--username="jdoe" \
--password="MyPassword" \
--dry
Contributing
Clone the repo:
git clone https://github.com/markbattistella/markdown-safe-link.git
Create your feature branch:
git checkout -b my-feature
Commit your changes:
git commit -am 'Add some feature'
Push
to the branch:git push origin my-new-feature
Submit the
pull
request