@lsbjordao/type-taxon-script 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +60 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lsbjordao/type-taxon-script",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"author": "Lucas Jordão <tucarj@gmail.com> & André Eppinghaus <andreeppinghaus@gmail.com> & Vicente Calfo <vicentecalfo@gmail.com>",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "TypeTaxonScript",
|
package/readme.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# TypeTaxonScript (TTS)
|
|
2
|
+
|
|
3
|
+
## Install Node.js
|
|
4
|
+
|
|
5
|
+
Before you begin, ensure that Node.js is installed on your system. Node.js is essential for running JavaScript applications on your machine. You can download and install it from the official Node.js website (https://nodejs.org/).
|
|
6
|
+
|
|
7
|
+
## Install Git
|
|
8
|
+
|
|
9
|
+
Ensure that Git (https://git-scm.com/) is installed on your system.
|
|
10
|
+
|
|
11
|
+
## Install Visual Studio Code
|
|
12
|
+
|
|
13
|
+
Visual Studio Code (VS Code) is a versatile code editor that provides a user-friendly interface and a plethora of extensions for enhanced development. Download and install VS Code from its official website (https://code.visualstudio.com/) to utilize its features for your project.
|
|
14
|
+
|
|
15
|
+
## Clone the repository from GitHub in VS Code
|
|
16
|
+
|
|
17
|
+
To clone the *Mimosa* project repository for TTS from GitHub, follow these steps:
|
|
18
|
+
|
|
19
|
+
1. In VS Code, access the Command Palette by pressing `Ctrl + Shift + P` (Windows/Linux) or `Cmd + Shift + P` (macOS).
|
|
20
|
+
2. Type `Git: Clone` and select the option that appears.
|
|
21
|
+
3. A text field will appear at the top of the window. Enter the URL of the repository you want to clone. In this case, use `https://github.com/lsbjordao/TTS-Mimosa`.
|
|
22
|
+
4. Choose a local directory where you want to clone the repository to.
|
|
23
|
+
|
|
24
|
+
We highly recommend using a path for cloning the repository that excludes spaces (` `) or any other unconventional text characters. This precaution ensures that files can be easily opened by simply pressing `Ctrl` + clicking on the file path within the IDE's console.
|
|
25
|
+
|
|
26
|
+
## Open the TTS project directory in VS Code
|
|
27
|
+
|
|
28
|
+
To open the TTS project directory in VS Code:
|
|
29
|
+
|
|
30
|
+
1. Click on `File` in the top menu.
|
|
31
|
+
2. Select `Open Folder` from the dropdown menu.
|
|
32
|
+
3. Navigate to the location where your TTS project (e.g., TTS-Mimosa) directory is stored.
|
|
33
|
+
4. Click on the TTS project directory to select it.
|
|
34
|
+
5. Click the `Open` button.
|
|
35
|
+
|
|
36
|
+
## Installing TTS package
|
|
37
|
+
|
|
38
|
+
Within VS Code, open your terminal and execute the command to install TTS globally:
|
|
39
|
+
|
|
40
|
+
1. Navigate to the top menu and select `Terminal`.
|
|
41
|
+
2. From the dropdown menu, choose `New Terminal`.
|
|
42
|
+
3. In the terminal, type and execute the following command:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm install -g @lsbjordao/type-taxon-script
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Install it globally using `-g` to prevent unnecessary dependencies from being installed within the TTS project directory. If one do not include `-g` argument, the `./node_modules` directory and `package.json` file will be inconveniently created in the TTS project directory.
|
|
49
|
+
|
|
50
|
+
To verify the installation of the TTS, use the following command to check the current version:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
tts --version
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
For comprehensive guidance on available commands and functionalities, access the help documentation using:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
tts --help
|
|
60
|
+
```
|