forked from andrewagain/javascriptstuff-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutility-libraries.js
More file actions
39 lines (37 loc) · 1.23 KB
/
utility-libraries.js
File metadata and controls
39 lines (37 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = {
key: "utility-libraries",
name: "Utility Libraries",
description:
"Each of these libraries contain many functions that are meant to help with a variety of common tasks in JavaScript.",
aka: [
"lodash alternatives",
"jquery alternatives",
"underscore alternatives",
],
tags: [
{
name: "ajax",
description: "Includes methods for sending HTTP requests.",
},
{
name: "multi-tool",
description:
"These libraries have functions for a wide variety of use-cases - they are not focused on one task.",
aka: ["toolkit"],
},
{
name: "date",
description: "These tools help with parsing & formatting dates & times",
aka: ["time"],
},
],
projects: [
{ url: "https://github.com/moment/moment", tags: ["date"] },
{ url: "https://github.com/date-fns/date-fns", tags: ["date"] },
{ url: "https://github.com/lodash/lodash", tags: ["multi-tool"] },
{ url: "https://github.com/jashkenas/underscore", tags: ["multi-tool"] },
{ url: "https://github.com/jquery/jquery", tags: ["multi-tool", "ajax"] },
{ url: "https://github.com/faisalman/ua-parser-js" },
{ url: "https://github.com/moment/luxon", tags: ["date"] },
],
};