{"id":15200015,"url":"https://github.com/jcampbell57/portfolio","last_synced_at":"2026-03-09T10:01:48.868Z","repository":{"id":241360051,"uuid":"805634920","full_name":"jcampbell57/portfolio","owner":"jcampbell57","description":"A portfolio of projects completed while working through The Odin Project. The purpose of this project is to showcase what I have learned. ","archived":false,"fork":false,"pushed_at":"2024-08-13T06:30:41.000Z","size":12259,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T11:43:27.102Z","etag":null,"topics":["babel","css3","eslint","html5","javascript","json","localstorage","prettier","webpack"],"latest_commit_sha":null,"homepage":"https://jasonmichaelcampbell.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jcampbell57.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-25T03:24:35.000Z","updated_at":"2024-08-13T06:30:35.000Z","dependencies_parsed_at":"2024-05-29T01:36:28.592Z","dependency_job_id":"4a5594b0-5dae-4a96-9d7b-bb28a2af5e80","html_url":"https://github.com/jcampbell57/portfolio","commit_stats":{"total_commits":42,"total_committers":1,"mean_commits":42.0,"dds":0.0,"last_synced_commit":"f73a534316bd025cb2ce71a5104f448448251ad8"},"previous_names":["jcampbell57/portfolio"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jcampbell57/portfolio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcampbell57%2Fportfolio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcampbell57%2Fportfolio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcampbell57%2Fportfolio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcampbell57%2Fportfolio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jcampbell57","download_url":"https://codeload.github.com/jcampbell57/portfolio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jcampbell57%2Fportfolio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30290908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babel","css3","eslint","html5","javascript","json","localstorage","prettier","webpack"],"created_at":"2024-09-28T02:40:18.517Z","updated_at":"2026-03-09T10:01:48.852Z","avatar_url":"https://github.com/jcampbell57.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Portfolio\n\n## Project Info\n\nA portfolio of projects completed while working through The Odin Project. The purpose of this project is to showcase what I have learned. Project description can be found [here](https://www.theodinproject.com/lessons/getting-hired-building-your-personal-website).\n\n\n## Live demo\n\nLive demo available [here](https://jasonmichaelcampbell.com)\n\n\n## Table of Contents\n\n* [Features](#features)\n* [Technologies utilized](#technologies-utilized)\n* [Behind the Scenes](#behind-the-scenes)\n* [Installation](#installation)\n\n\n## Features\n\n- Projects listed can be filtered by technology used. \n- Dark/light mode toggle persisted in localStorage.\n- Custom CSS font\n\n\n## Technologies utilized\n\n- HTML5\n- CSS5\n- JavaScript ES6\n- Webpack\n- ESLint\n- Prettier\n- Babel\n\n\n## Behind the scenes\n\n### Improvements\n\n- Refactor project with react\n\n### Project notes\n\n- My previous projects were completed within an ubuntu environment. I worked on this project in OSX and revisited the following lessons to set up an OSX development environment:\n    - [this lesson](https://www.theodinproject.com/lessons/foundations-setting-up-git) was helpful for configuring git.\n    - [this lesson](https://www.theodinproject.com/lessons/foundations-installing-node-js) was helpful for setting up nvm and node.\n    - [this lesson](https://www.theodinproject.com/lessons/node-path-javascript-linting) was helpful for configuring ESLint and Prettier.\n\n- I had previously installed nvm through homebrew when working with another repo. For this project, I had to uninstall the homebrew nvm installation using `brew uninstall nvm`, and remove the relevant lines from `~/.zshrc` in order to follow the steps from the lessons previously mentioned.\n\n- I used [babel-loader](https://github.com/babel/babel-loader) for babel to work with webpack, but this configuration may need to be modified to work with react. \n\n### Resources\n\n- I referenced [this article](https://dev.to/devdammak/setting-up-eslint-in-your-javascript-project-with-vs-code-2amf) while setting up ESLint\n- [Devicon](https://devicon.dev/) is a great source of icons representing programming languages, designing, and development tools.\n\n### Terminal commands used during development\n\n- Webpack setup\n    - `npm init`\n    - `npm install webpack webpack-cli --save-dev`\n    - `npm install --save-dev style-loader css-loader`\n    - `npm install --save-dev html-webpack-plugin`\n    - `npm install --save-dev webpack-dev-server`\n\n- Babel setup\n    - `npm install -D babel-loader @babel/core @babel/preset-env webpack`\n\n- ESLint setup\n    - `npm init @eslint/config@latest`\n\n- Prettier setup\n    - `npm install prettier -D --save-exact`\n\n- Deployment\n    - `npm run deploy`\n\n\n## Installation\n\n- Clone this repository to your desktop.\n- Navigate to the top level of the directory by running `cd naval-warfare`.\n- Run `npm install` to install the required dependencies.  \n- Open `dist/index.html` in your browser.\n- Run `npm run watch:webpack` to update the `dist` folder on save\n- Refresh page after saving to see changes\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcampbell57%2Fportfolio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjcampbell57%2Fportfolio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjcampbell57%2Fportfolio/lists"}