forked from CloudNativeJS/cloudnativejs.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodules-faq.html
69 lines (60 loc) · 4.55 KB
/
modules-faq.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122616711-2"></script>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script w3-include-html="partials/google-analytics.html"></script>
<script type="application/ld+json" w3-include-html="partials/structured-data.html"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Module Insights</title>
<link rel="icon" type="image/png" href="assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<!--Main Navigation-->
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar" w3-include-html="partials/header.html"></nav>
<div class="container">
<h1>Module Insights</h1>
<p>
This page is designed to help you quickly view key information on modules and make a more informed decision on which you include in your application. To get started, select the Platform you wish to view data for, this will refresh the table with relevant
information. Currently this list includes:
<ul>
<li>ubuntu-16.04 (x64)</li>
<li>ubuntu-16.04 (s390x)</li>
<li>ubuntu-16.04 (ppc64le)</li>
<li>macos10.13 (x64)</li>
</ul>
</p>
<h2>Column Titles</h2>
<p>
<ul>
<li><strong>Name</strong> is the NPM name of the module. Clicking the name will take you to an additional information page which includes a list of found licenses.</li>
<li><strong>Commercial Support</strong> indicates whether commercial support is available for the module, and a list of providers. At time of launch this has only been populated with IBM support.</li>
<li><strong>Stability</strong> indicates whether the module adheres to the <a href="https://github.com/CloudNativeJS/ModuleLTS">Module LTS Policy</a>.</li>
<li><strong>Recommended Versions</strong> We recommend a major version of a module against each LTS version of Node, with the latest version of said module in brackets. <span style="color:green;">GREEN</span> indicates that tests have passed
for the selected module on the selected module. <span style="color:red;">RED</span> indicates failure. If the cell is grey, we have been unable to retrieve any results. Clicking a module version will take you to a detailed view on
the passes and failures against each platform and each node version.
<li><strong>Latest Version Status</strong> shows the latest module version number, and whether that passes against the latest LTS version of Node and gives additional information on the module itself, including:
<ul>
<li><strong>License</strong> The license found for the module</li>
<li><strong>Sublicenses</strong> A count of unique licenses found within the dependency tree for the module. You can view this list by clicking the name of the module.</li>
<li><strong>Code Coverage</strong> To get code coverage results we utilise <a href="https://www.npmjs.com/package/nyc">NYC</a>.</li>
<li><strong>Tags</strong> is intended to provide information to help you find or compare modules. This list is currently empty.</li>
</ul>
</li>
</ul>
<p>
You can also use the search box at the top right of the table to filter on information in any column. To get in touch with us about this page, or any of the work contained within CloudNativeJS, please see our <a href="https://www.cloudnativejs.io/contact.html">Contact</a> page.
</p>
</div>
<script>
w3.includeHTML();
</script>
</body>
</html>