Task template for graphlabs web project
- install Node, npm/yarn, WebStorm/Intellij IDEA
- look at package.json file to see how to run tests and the application
- do not forget to update version before publishing
- while contributing, write maximum comments
- add specification tags of JSDoc to every function and class you have created
- seek to write tests over every functionality you adds to the module
- npm install graphlabs.core.template
- initialize your repository
create-react-app my-app —scripts-version=react-scripts-ts
- add to
public/images
folder default images - Extend your application from TaskTemplate
import { TaskTemplate } from 'graphlabs.core.template';
class App extends TaskTemplate {
}
- Now you can develop your task module by overriding field in the template and adding your custom logic.