This is a simple prototype of an app to visualize RDF data.
To build the app, run npm run build.
The generated output will be in the dist/ directory.
To deploy the app, run npm run build.
This will build the app and publish the dist/ directory as a GitHub pages site.
To format the source code, run npm run format.
To serve the app, run npm start.
The app will be updated automatically as code changes are saved.
To simulate a production environment, run npm run start:production.
Note that the webpack-dev-server is not intended for use in production environments.
To test the app, run npm test.
Before getting started, you will need Git and Node.js.
- Open a terminal and run
git --version - If Git is not installed, follow the GitHub guide for setting up Git
- Open a terminal and run
node -v - If Node.js is not installed or is not
v16.0.0or above, follow the official guide for installing Node.js
- If you haven't already, create a new GitHub repository from this template.
- On your machine, open a terminal.
- Clone the repository you've created from the template.
Rungit clone <your-repository-url> <some-directory> - Navigate to the directory where you cloned the repository.
Runcd <some-directory> - Install dependencies.
Runnpm install - Serve app in development mode.
Runnpm start
You are now ready to start coding!