Skip to content

Commit 6c27b91

Browse files
committed
Updated readme.
1 parent ae8c289 commit 6c27b91

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
# Immanuel.JS
22

3-
This package provides a fully-customisable, responsive-ready, pure JavaScript astrology chart. The main chart graphic elements are provided and styled by the developer, while elements such as aspects lines and house cusps are drawn via SVG, and are also fully customisable via CSS. See the `/demo` directory for an example.
3+
This package provides a fully-customisable, responsive-ready, pure JavaScript astrology chart. The main chart graphic elements are provided and styled by the developer, while elements such as aspects lines and house cusps are drawn via SVG, and are also fully customisable via CSS. See the `/demo` directory for an example, or visit https://immanuel.app.
44

55
## Installation
66

7+
Node projects:
8+
79
```bash
810
npm i immanuel
911
```
12+
then
13+
```javascript
14+
import 'immanuel';
15+
```
16+
Or:
17+
```html
18+
<script src="https://cdn.jsdelivr.net/gh/sunlight/[email protected]/dist/immanuel.js"></script>
19+
```
20+
21+
Both of these will expose the global Immanuel class for use.
1022

1123
## Usage
1224

rollup.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ export default [{
1414
babel({ babelHelpers: 'bundled' }),
1515
terser()
1616
]
17-
}
18-
];
17+
}];

0 commit comments

Comments
 (0)