awesome-docker/website/index.js

20 lines
389 B
Markdown
Raw Normal View History

2018-06-09 20:59:45 +00:00
const List = require('list.js');
2018-06-09 14:08:57 +00:00
2018-03-17 15:27:41 +00:00
const main = () => {
2018-06-09 20:59:45 +00:00
const userList = new List('md', {
valueNames: [
'name',
'description',
'homepage',
2018-08-08 10:22:43 +00:00
{ name: 'star', attr: 'data-stars' },
2018-06-25 11:50:07 +00:00
{ name: 'updated', attr: 'data-timestamp' },
2018-06-09 20:59:45 +00:00
'language',
'license',
'author',
],
});
console.log(`There are ${userList.size()} projects`);
2018-03-17 15:27:41 +00:00
};
main();