Dev commons is an api for accessing a set of config files needed to start a new project development .
Save your development config files and re-use in another projects without wasting time .
Endpoint :
https://dev-commons.vercel.app/api
Just set file name for request body file item .
I recommend using curl for speed and simplicity .
Run this command in terminal :
$ curl https://dev-commons.vercel.app/api -d "file=.gitignore" -o .gitignore
Now you have a .gitignore
file in current directory .
You can also send request using other tools like Postman .
If you want to add yourself config files , do following steps :
- Fork repository
- Create files with
[filename].common.txt
name incommons
directory - Deploy your repository to Vercel
Use your set of config files from anywhere 😍