A cli tool to quickly create and manage nginx server blocks.
https://up.js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
225 B
7 lines
225 B
7 years ago
|
var https = require('https');
|
||
|
var fs = require('fs-extra');
|
||
|
|
||
|
var file = fs.createWriteStream("./assets/tlds.txt");
|
||
|
https.get("https://data.iana.org/TLD/tlds-alpha-by-domain.txt", function(response) {
|
||
|
response.pipe(file);
|
||
|
});
|