Skip to content

Commit

Permalink
added skypack usage link and explanation
Browse files Browse the repository at this point in the history
  • Loading branch information
suryapratapsinghsuryavanshi committed Feb 25, 2022
1 parent a661b3f commit 22fef40
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@ Installation is done using the
### Using yarn:
yarn add solverjs

### Using CDN
### Using CDN:
[SolverJS jsDelivr CDN](https://www.jsdelivr.com/package/npm/solverjs)

### Using Skypack:
[SolverJS Skypack CDN](https://www.skypack.dev/view/solverjs)

## Contributing

Expand Down Expand Up @@ -83,6 +85,18 @@ console.log(ans);
// Output should be : 21
```

## Usage In Deno with [Skypack](https://www.skypack.dev/)
```js
import solverjs from 'https://cdn.skypack.dev/solverjs?dts';
```

## Usage In Browser with [Skypack](https://www.skypack.dev/)
```js
<script type="module">
import solverjs from 'https://cdn.skypack.dev/solverjs?min';
</script>
```

## All Commonly used Functions
### info
The info() function is used to print a concise summary of all SolverJs methods.
Expand Down

0 comments on commit 22fef40

Please sign in to comment.