layout | permalink | title | description | keywords | js | js2 |
---|---|---|---|---|---|---|
base |
/install/ |
Install |
Install NovaSheets using npm or from the browser |
nixinova,novasheets,install novasheets |
headings |
colouring |
Once NovaSheets is successfully installed, see the docs for usage.
For command-line usage, install NovaSheets on npm globally via the command line using npm install -g novasheets
, and then get started using novasheets --help
.
For use in Node.js, install the NovaSheets npm package locally via the command line using npm install novasheets
.
NovaSheets is installed simply by embedding a JavaScript file into your HTML. This file can be downloaded and hosted locally by you (see § Downloading) or you can link directly to the source code (see § Importing). That's it!
See the Versions page to choose a version to download. Once you have done this, you can download one of the files given and add them to your project, or embed NovaSheets into your project directly using the code provided.
The latest version is {{version.latest}} and can be imported using the code below:
<script src="https://novasheets.js.org/src/{{version.latest}}/min"></script>
While the minified version above is recommended for general use, you can also choose to use the more verbose regular version, which includes comments and indentation:
<script src="https://novasheets.js.org/src/{{version.latest}}"></script>
Additionally, you can choose to use a wildcard version, where you will always receive the latest patch:
<script src="https://novasheets.js.org/src/1.x"></script>
<script src="https://novasheets.js.org/src/1.x/min"></script>
You can choose to always import the latest stable version of NovaSheets ({{version.stable}}) using the code below, but be warned it may contain breaking changes in an update:
<script src="https://novasheets.js.org/src/stable"></script>
<script src="https://novasheets.js.org/src/stable/min"></script>
NovaSheets is supported in all major browsers, including Chrome, Edge (Chromium), Firefox, Opera, and Safari. NovaSheets does not work in older browsers such as Internet Explorer as it is written using features from ECMAScript versions up to ES2018.