An open API service indexing awesome lists of open source software.

https://github.com/mucahitgurbuz/simple-spa-profile-page


https://github.com/mucahitgurbuz/simple-spa-profile-page

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Repository for Case Study of developing SPA with React, Typescript, MobX, NodeJS.

"client" folder handles frontend, "server" folder handles backend.

Use Node version 9.0.0 for a smooth experience.

First run yarn in root/ folder.
Then run yarn in client/ folder.

In the root folder run

```bash
node configure
```

To start backend and frontend, in the root folder run

```bash
yarn dev
```

Demo purposed login
username: hande
password: demo

vscode settins for eslint to work properly(install eslint extension first)

```json
{
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"editor.colorDecorators": true
}
```