We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f1c97 commit 38d31faCopy full SHA for 38d31fa
README.md
@@ -1,4 +1,17 @@
1
# ml5-neuralnetwork-test-build
2
This repo is a test to see what it would take to create a new build for ml5.
3
4
-## Build Process
+## Setup
5
+This build uses node version 18.15.0 and npm version.
6
+Install nvm and run the following commands:
7
+```
8
+nvm install 18.15
9
+nvm use 18
10
11
+
12
+## Process
13
+I built the library using Webpack:
14
15
+npm install --save-dev webpack webpack cli
16
17
+Then I created package.json using `npm init`.
package/index.js
@@ -0,0 +1,5 @@
+function printHelloWorld() {
+ console.log("Hello world!");
+}
+module.exports = printHelloWorld;
0 commit comments