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

https://github.com/adamhb123/portfolio

(in-progress) portfolio from scratch (with React + React Bootstrap)
https://github.com/adamhb123/portfolio

api api-rest babel expressjs hacktoberfest react reactjs sass sqlite3

Last synced: 3 months ago
JSON representation

(in-progress) portfolio from scratch (with React + React Bootstrap)

Awesome Lists containing this project

README

          

# Portfolio
- `npm start` — This will spawn a development server.
- `npm run prod` — This will spawn a production server.
- `npm run build` — This will output a production build in the `dist` directory.

## Adding styles

You can use CSS files with simple ES2015 `import` statements anywhere in your Javascript:

```js
import "./index.css";
```

## Babel transforms

The Babel preset [babel-preset-nano-react-app](https://github.com/nano-react-app/babel-preset-nano-react-app) is used to support the same transforms that Create React App supports.

The Babel configuration lives inside `package.json` and will override an external `.babelrc` file, so if you want to use `.babelrc` remember to delete the `babel` property inside `package.json`.