A modular platform for hosting data that will allow developers to easily create their own plugins for using that data.
Run the server locally as follows:
npm install
npm start
The src directory contains the source code for the server and is written in JavaScript. This source code
is transpiled to the lib directory for deployment and testing.
npm run buildwill transpile thesrcdirectory intolibnpm run cleanwill delete the transpiled code
To debug with VS Code you will need to:
- Select the
Debugtab - Choose the
Add Configurationoption from the debug dropdown list - Select
Node.jsfor the debug environment - Finally add the following configuration to the auto generated
launch.json:
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program via Babel",
"program": "${workspaceFolder}/src/app.js",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/babel-node",
"cwd": "${workspaceFolder}"
}
]
Mocha, Chai and Supertest are currently used for testing. Each api route should be tested mocking out databases and
functionality as required. The logging level for the tests is set to error which will hide all logs except errors.
npm test
The project is using ESLint as the linter. The configuration for this is stored in .eslintrc.json. You can use the following commands:
npm run lintto run ESLintnpm run lint:fixto run ESLint with the --fix prefix which will automatically fix certain linting errors
There is a Dockerfile based off the Node image that can be used to run the IPFS Platform in a container.