0577.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Host Your Own Hoppscotch - Browser Based Open Source Alternative to Postman</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,API Development,Postman Alternative,Postman,Hoppscotch,Hoppscotch.io,Web Developer Tools,API,Linux,Debian,Ubuntu,NodeJS,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Host Your Own Hoppscotch - Browser Based Open Source Alternative to Postman">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="07/28/2024 06:55:05 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Host Your Own Hoppscotch - Browser Based Open Source Alternative to Postman</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Hoppscotch?</h2>
  26. <blockquote><em>Hoppscotch is a lightweight, web-based API development suite. It was built from the ground up with ease of use and accessibility in mind providing all the functionality needed for developers with minimalist, unobtrusive UI. -<a href="https://docs.hoppscotch.io/documentation/getting-started/introduction" target="_blank">https://docs.hoppscotch.io/documentation/getting-started/introduction</a></em></blockquote>
  27. <h2>Installing Hoppscotch</h2>
  28. <ol>
  29. <li>Log into the Linux device</li>
  30. <li>Run the following commands in a terminal window
  31. <div class="codeBlock"># update software repositories<br />
  32. sudo apt update<br />
  33. # install available software updates<br />
  34. sudo apt upgrade -y<br />
  35. # install prerequisites<br />
  36. sudo apt install git curl openssl -y<br />
  37. # add nodejs software repository<br />
  38. curl -sL https://deb.nodesource.com/setup_16.x | sudo bash -<br />
  39. # install nodejs<br />
  40. sudo apt install nodejs -y<br />
  41. # clone hoppscotch from git<br />
  42. git clone https://github.com/hoppscotch/hoppscotch ./hoppscotch<br />
  43. # cd into the new directory<br />
  44. cd hoppscotch/<br />
  45. # clean npm cache<br />
  46. npm cache clean --force<br />
  47. # install npm dependencies<br />
  48. npm install<br />
  49. # fix npm vulnerabilities<br />
  50. npm audit fix<br />
  51. # build hoppscotch<br />
  52. npm run generate<br />
  53. # run it<br />
  54. npm start</div>
  55. </li>
  56. <li>Open a web browser and navigate to http://DNSorIP:3000</li>
  57. <li>Welcome to Hoppscotch</li>
  58. </ol> </div>
  59. </div>
  60. </body>
  61. </html>