Quick Start
Here's a whirlwind tour of the main features of isomorphic-git
.
First, let's set up LightningFS and isomorphic-git. Note: I've already done this for you, which is why there is no RUN button for this code block.
<script src="https://unpkg.com/@isomorphic-git/lightning-fs"></script>
-<script src="https://unpkg.com/isomorphic-git@beta"></script>
+<script src="https://unpkg.com/isomorphic-git"></script>
<script type="module">
-import http from 'https://unpkg.com/isomorphic-git@beta/http/web/index.js'
+import http from 'https://unpkg.com/isomorphic-git/http/web/index.js'
// Initialize isomorphic-git with a file system
window.fs = new LightningFS('fs')
// I prefer using the Promisified version honestly
diff --git a/docs/en/next/quickstart/index.html b/docs/en/next/quickstart/index.html
index 739e4c46..298ab6db 100644
--- a/docs/en/next/quickstart/index.html
+++ b/docs/en/next/quickstart/index.html
@@ -57,9 +57,9 @@
Quick Start
Here's a whirlwind tour of the main features of isomorphic-git
.
First, let's set up LightningFS and isomorphic-git. Note: I've already done this for you, which is why there is no RUN button for this code block.
<script src="https://unpkg.com/@isomorphic-git/lightning-fs"></script>
-<script src="https://unpkg.com/isomorphic-git@beta"></script>
+<script src="https://unpkg.com/isomorphic-git"></script>
<script type="module">
-import http from 'https://unpkg.com/isomorphic-git@beta/http/web/index.js'
+import http from 'https://unpkg.com/isomorphic-git/http/web/index.js'
// Initialize isomorphic-git with a file system
window.fs = new LightningFS('fs')
// I prefer using the Promisified version honestly