I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| const axios = require('axios'); | |
| const fs = require('fs'); | |
| const url = <path_to_file> | |
| axios({ | |
| method: 'get', | |
| url: url, | |
| responseType:'stream' | |
| }) | |
| .then(res => { | |
| res.data.pipe(fs.createWriteStream('new.zip')); |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.