Skip to content

Commit 61c3050

Browse files
authored
Update README.md
1 parent ac316b3 commit 61c3050

File tree

1 file changed

+52
-2
lines changed

1 file changed

+52
-2
lines changed

README.md

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1-
# Vanilla JavaScript API
1+
# Welcome to Neptune JS!
22

3-
The official JavaScript API for Neptune CSS
3+
![](https://img.shields.io/github/v/tag/neptune-css/neptune-css?color=%2300AACC) ![](https://img.shields.io/npm/dm/@neptune-css/neptune?color=%2300AACC) ![](https://img.shields.io/npm/l/@neptune-css/neptune?color=%2300AACC)
4+
***
5+
6+
![readme_banner_js](https://github.com/neptune-css/javascript-api/assets/122671813/42fd3da4-3f6e-42de-b68b-487e5fc7da47)
7+
8+
9+
## Install
10+
11+
### NMP
12+
Copy the following Code to install the [npm package](https://www.npmjs.com/package/@neptune-css/neptune).
13+
```
14+
npm i @neptune-css/neptune
15+
```
16+
17+
### CDN
18+
Use the following tag to import neptune via cdn. Replace [VERSION] with the version you want (`vx.x.x`).
19+
```html
20+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@neptune-css/neptune@[VERSION]/neptune.css">
21+
```
22+
23+
#### Example
24+
```html
25+
<!DOCTYPE html>
26+
<html lang="en">
27+
<head>
28+
<meta charset="UTF-8">
29+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
30+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
31+
32+
<!-- Import neptune ui -->
33+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@neptune-css/neptune@[VERSION]/neptune.css">
34+
35+
<title>Neptune example</title>
36+
</head>
37+
<body>
38+
<!-- Your Content -->
39+
</body>
40+
</html>
41+
```
42+
43+
## Documentation
44+
You can read the docs [here](http://docs.neptunecss.org).
45+
46+
## Snippets Extension
47+
Download it in [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=NeptuneCSS.neptune-snippets) or checkout on [GitHub](https://github.com/neptune-css/neptune-snippets).
48+
49+
## License
50+
[MIT LICENSE](https://github.com/neptune-css/neptune-css/blob/main/LICENSE)
51+
52+
## Author
53+
[Colin Grahm](https://github.com/CGWebDev2003)

0 commit comments

Comments
 (0)