-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (72 loc) · 2.93 KB
/
Copy pathindex.html
File metadata and controls
80 lines (72 loc) · 2.93 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
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
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<meta http-equiv='X-UA-Compatible' content='ie=edge'>
<link rel='stylesheet' href='styles.css'>
<title>Interspect</title>
</head>
<body>
<container>
<header class='header' id='header'>
<div class='skew'>
<div class='header-inner'>
<h1 class='logo'>
<a href='/'>
<br />
</a>
</h1>
</div>
</div>
</header>
<nav class='download'>
<button onclick='window.location.href ="https://github.com/oslabs-beta/Interspect/releases/download/1.0.0/Interspect-macOS-x64.zip";'class='button'>Download for macOS</button>
<a class="github-button" href="https://github.com/oslabs-beta/Interspect" data-icon="octicon-star" data-size="large" aria-label="Star oslabs-beta/Interspect on GitHub">Star</a>
</nav>
<div class='hero'>
<img src='./images/hero-illustration.svg' alt='hero' />
</div>
<main class='center'>
<header>
<img src='./images/beta-badge.png' alt='beta-badge' />
<h1>Interspect</h1>
</header>
<p>An open source API-mocking tool to help ensure data interoperability between microservices, without having to worry about test data setup or environment availability.
Interspect is specifically designed to maximize developer and tester productivity when working in autonomous or cross-functional product teams.
</p>
<a href="https://github.com/oslabs-beta/Interspect" class="secondary-cta">Learn more →</a>
<section class="features">
<article class="feature">
<header>
<img src='./images/mockup-icon.png' alt='mockup-icon' />
<h2>Quick mockups</h2>
</header>
<p>Modify data from a source microservice to create mockups for easy testing. Unblocking testers and developers waiting for APIs</p>
</article>
<article class="feature">
<header>
<img src='./images/batch-icon.png' alt='batch-icon' />
<h2>Batch testing</h2>
</header>
<p>Send HTTP requests for each mockup in one click to speed up your workflow and reduce third-party transaction costs</p>
</article>
<article class="feature">
<header>
<img src='./images/performance-icon.png' alt='performance-icon' />
<h2>Performance</h2>
</header>
<p>View network timing metrics for your tests to catch latency issues upfront. Make your performance tests more reliable.</p>
</article>
</section>
</main>
<footer>
<h2>Learn more and contribute</h2>
<p>Interspect is MIT-Licensed and completly open source. You can find full documentation and contribution guidelines on
<a href='https://github.com/oslabs-beta/Interspect' target='_blank'><b>GitHub</b></a>
</p>
</footer>
</container>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>