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)
- Host: GitHub
- URL: https://github.com/adamhb123/portfolio
- Owner: adamhb123
- Created: 2021-10-02T08:25:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T19:29:49.000Z (over 3 years ago)
- Last Synced: 2025-10-19T13:17:24.508Z (8 months ago)
- Topics: api, api-rest, babel, expressjs, hacktoberfest, react, reactjs, sass, sqlite3
- Language: JavaScript
- Homepage: https://adabrew.com
- Size: 8.87 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.