Simply is a simple, 2 page portfolio template.
It's not production ready, things might break. It has been built for those moments when you want to learn or to test something quickly (animations, accessibility stuff, naming conventions or new things like css grid, etc) but you don't have a project to do it on. It's released under MIT though so you can do whatever you want with it.
Warning: Experimental project built to learn and/or test new things.
Before anything else, make sure nodejs and npm are installed on your machine. If not, follow these instructions and then proceed with the next steps:
git clone https://github.com/alexandonie/simply
cd simply
npm run install
The project is now on your machine and all the dependencies should be installed. All that's left to do is to fire up the project. You can do that my running the command:
npm run dev
This will run the project in development mode. It will start a local dev server, it will generate source maps and everything that's required for a modern front-end development environment.
If you want to get the project production ready, then all you have to do is to run:
npm run build
This will bundle up and optimize all of your code, it will rename all of your assets for cache busting (among other things) and will place everything in a dist
directory at the root level of the project.
simply
├── dist
├── node_modules
├── src
│ ├── images
│ ├── scripts
│ ├── styles
│ ├── article.html
│ ├── index.html
│ └── index.js
├── .browserslistrc
├── .eslintrc.json
├── .gitignore
├── .postcssrc
├── LICENSE
├── package-lock.json
├── package.json
└── README.md
Designed and coded by me 😁
- Website: https://alexandonie.com/
- Github: https://github.com/alexandonie/
The code is available under the MIT license.