File tree 4 files changed +23
-1
lines changed
4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+
2
+ # Native browser
3
+
4
+ The package illustrates the native integration of the CSV packages in a browser environnment.
5
+
6
+ ## Testing
7
+
8
+ There are no test for this package. The only way is to start the server and navigate the pages. We could use headless browser tests.
Original file line number Diff line number Diff line change 1
1
2
2
# Node.js CSV demo for CommonJS
3
3
4
- The package exposes a few JavaScript and TypeScript examples to import the CSV parser using the CommonJS module loader .
4
+ The package illustrates the usage of CommonJS modules inside a Node.js environment. It uses JavaScript and TypeScript .
5
5
6
6
## Testing
7
7
8
+ The test suite execute each sample present in the ` ./lib ` folder.
9
+
8
10
For Node.js 12 and above, run ` yarn test ` . For versions below 12 and above 8, run ` ./test/node8.sh ` .
Original file line number Diff line number Diff line change
1
+
2
+ # ESM demo
3
+
4
+ The package illustrates the usage of ESM inside a Node.js environment. It uses JavaScript and TypeScript.
5
+
6
+ ## Testing
7
+
8
+ The test suite execute each sample present in the ` ./lib ` folder.
Original file line number Diff line number Diff line change @@ -37,3 +37,7 @@ npx http-server ./dist -p 8080
37
37
```
38
38
39
39
The web application is now accessible on [ ` https://localhost:8080 ` ] ( https://localhost:8080 ) .
40
+
41
+ ## Testing
42
+
43
+ The test suite consists in building the code with webpack. We don't check if the code is working.
You can’t perform that action at this time.
0 commit comments