forked from andrewagain/javascriptstuff-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview-libraries.js
More file actions
29 lines (27 loc) · 1.14 KB
/
view-libraries.js
File metadata and controls
29 lines (27 loc) · 1.14 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
module.exports = {
key: "view-libraries",
name: "View Libraries",
description:
"View libraries render your app in the browser. You provide some code or data in a format that is specific to the library, and the library handles rendering DOM elements and styles. All of these run within the browser, but some also run on the server.",
aka: ["UX Libraries", "UX Frameworks"],
tags: [
{
name: "mobile",
description:
"Renders native views on iOS/Android instead of browser DOM elements.",
},
],
projects: [
{ url: "https://github.com/hyperapp/hyperapp" },
{ url: "https://github.com/facebook/react" },
{ url: "https://github.com/developit/preact" },
{ url: "https://github.com/angular/angular" },
{ url: "https://github.com/MithrilJS/mithril.js" },
{ url: "https://github.com/elm/compiler" },
{ url: "https://github.com/facebook/react-native", tags: ["mobile"] },
{ url: "https://github.com/OnsenUI/OnsenUI" },
{ url: "https://github.com/emberjs/ember.js" },
{ url: "https://github.com/vuejs/vue" },
{ url: "https://github.com/NativeScript/NativeScript", tags: ["mobile"] },
],
};