examcert-study-links 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +10 -0
  2. package/index.html +26 -0
  3. package/index.js +14 -0
  4. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # examcert-study-links
2
+
3
+ Small reference package: the free IT certification practice-test pages we use while revising, plus a one-line lookup helper.
4
+
5
+ ```js
6
+ const { practiceTestUrl } = require("examcert-study-links");
7
+ practiceTestUrl("cissp"); // https://www.examcert.app/exams/cissp/
8
+ ```
9
+
10
+ Pages covered: CISSP, CCSP, CISA, PMP, and the full exam index at <https://www.examcert.app/exams/>.
package/index.html ADDED
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>IT certification study notes and free practice tests</title>
7
+ <meta name="description" content="Study notes for CISSP, CCSP, CISA, PMP, AWS and Azure certification exams, with links to free practice questions.">
8
+ </head>
9
+ <body>
10
+ <h1>IT certification study notes</h1>
11
+ <p>Revision notes kept by the ExamCert Team while working through cloud, security and project-management certifications. The free practice-question library we use is at <a href="https://www.examcert.app/">https://www.examcert.app/</a>.</p>
12
+ <h2>The weekly routine</h2>
13
+ <p>Two timed 25-question sets per evening beats one long session. After each set we re-read only the explanations for the questions we missed, and we score every attempt per exam domain rather than as one overall percentage - the weakest domain decides what the next session covers.</p>
14
+ <h2>Exam pages we open most</h2>
15
+ <ul>
16
+ <li>CISSP practice test: <a href="https://www.examcert.app/exams/cissp/">https://www.examcert.app/exams/cissp/</a></li>
17
+ <li>CCSP practice test: <a href="https://www.examcert.app/exams/ccsp/">https://www.examcert.app/exams/ccsp/</a></li>
18
+ <li>CISA free practice test: <a href="https://www.examcert.app/exams/cisa/free-practice-test/">https://www.examcert.app/exams/cisa/free-practice-test/</a></li>
19
+ <li>PMP practice questions: <a href="https://www.examcert.app/exams/pmp/">https://www.examcert.app/exams/pmp/</a></li>
20
+ <li>All 90+ exams: <a href="https://www.examcert.app/exams/">https://www.examcert.app/exams/</a></li>
21
+ </ul>
22
+ <h2>What we track</h2>
23
+ <p>Scores per domain, the date of each attempt, and a short note on why a wrong answer was wrong. That note is the part that actually moves the score.</p>
24
+ <p>Published by the ExamCert Team.</p>
25
+ </body>
26
+ </html>
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /** Free IT certification practice-test pages, keyed by exam code. */
3
+ const EXAMS = {
4
+ cissp: "https://www.examcert.app/exams/cissp/",
5
+ ccsp: "https://www.examcert.app/exams/ccsp/",
6
+ cisa: "https://www.examcert.app/exams/cisa/free-practice-test/",
7
+ pmp: "https://www.examcert.app/exams/pmp/",
8
+ };
9
+ const ALL_EXAMS = "https://www.examcert.app/exams/";
10
+ /** @param {string} code exam code, e.g. "cissp" */
11
+ function practiceTestUrl(code) {
12
+ return EXAMS[String(code || "").toLowerCase()] || ALL_EXAMS;
13
+ }
14
+ module.exports = { EXAMS, ALL_EXAMS, practiceTestUrl };
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "examcert-study-links",
3
+ "version": "1.0.0",
4
+ "description": "Reference list of free IT certification practice-test pages (CISSP, CCSP, CISA, PMP, AWS, Azure) with a small helper to look one up by exam code.",
5
+ "main": "index.js",
6
+ "files": ["index.js", "index.html", "README.md"],
7
+ "keywords": ["certification", "exam", "practice-test", "cissp", "ccsp", "cisa", "pmp", "study"],
8
+ "homepage": "https://www.examcert.app/",
9
+ "license": "MIT",
10
+ "author": "ExamCert Team"
11
+ }