mirror of
https://github.com/veggiemonk/awesome-docker.git
synced 2024-10-01 01:36:03 -04:00
20 lines
389 B
Markdown
20 lines
389 B
Markdown
const List = require('list.js');
|
|
|
|
const main = () => {
|
|
const userList = new List('md', {
|
|
valueNames: [
|
|
'name',
|
|
'description',
|
|
'homepage',
|
|
{ name: 'star', attr: 'data-stars' },
|
|
{ name: 'updated', attr: 'data-timestamp' },
|
|
'language',
|
|
'license',
|
|
'author',
|
|
],
|
|
});
|
|
console.log(`There are ${userList.size()} projects`);
|
|
};
|
|
|
|
main();
|