Skip to content

Latest commit

 

History

History
39 lines (37 loc) · 1.02 KB

README.md

File metadata and controls

39 lines (37 loc) · 1.02 KB

MMM-Domaining-Sedo-TopDomains

Displays a list of current top domains / recently sold domains and current auctions from Sedo by using the files provided in the Sedo integration area. For example all German files: https://sedo.com/txt/topdomains_d.txt https://sedo.com/txt/recentlysold_d.txt https://sedo.com/txt/auctions_de.txt

Using the module

To use this module, add it to the modules array in the config/config.js file:

modules: [
 {
	module: 'MMM-Domaining-Sedo-Lists',
	position: 'top_right', // This can be any of the regions.
	header: "Sedo.com",
	config: {
		lists: [
			{
				title: "Top Domains (de)",
				url: "https://sedo.com/txt/topdomains_d.txt"
			},
			{
				title: "Verkaufte Domains (de)",
				url: "https://sedo.com/txt/recentlysold_d.txt"
			},
			{
				title: "Domain Auktionen (de)",
				url: "https://sedo.com/txt/auctions_de.txt"
			}
		],
		updateInterval:  1440 * 60 * 1000, // every 24 hours
		slideListInterval: 2000,
		numberOfItemsPerList: 5,
		encoding: "UTF-8" //ISO-8859-1
	}
   }
]