Skip to content

Downloads and sorts the top 1 mills sites into a text file from Alexa

Notifications You must be signed in to change notification settings

alexmorleyfinch/top1mil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

I once needed a list of the top 1 million domains so I made this wonderful piece of art.

It uses http://s3.amazonaws.com/alexa-static/top-1m.csv.zip

I wrote this in javascript because it is the language I feel most comfortable in when quickly prototyping something.

However, an equivalent to this repo can be written in a 4 line bash script:

wget http://s3.amazonaws.com/alexa-static/top-1m.csv.zip
unzip top-1m.csv.zip
sort --key 2  --field-separator "," -d top-1m.csv > sorted-top-1m.csv
rm -f top-1m.csv.zip top-1m.csv

Written courtesy of Dolondro

Anywhoo... If you want to use this madness (why - why would you)

git clone https://github.com/alexmorleyfinch/top1mil.git
npm install
npm run start

To sort the output in alphabetical order then run

npm run start -- -s

About

Downloads and sorts the top 1 mills sites into a text file from Alexa

Resources

Stars

Watchers

Forks

Packages

No packages published