portfolio-builder
v1.0.3
Published
A CLI Tool to build an HTML portfolio page
Downloads
2
Readme
Portfolio Builder
Table of Contents
Download
Install the file globally. This is a command line utility.
npm i -g portfolio-builder
Back To Table of Contents
Usage
Portfolio Builder takes three optional arguments.
- A portfolioBuilder.json data file
- An output file location
- A template html file
Run the following command in the command line:
portfolioBuilder P/A/T/H/TO/PortfolioBuilder.json Output/Location/my.html PATH/TO/Template/HTML/file.html
NOTES:
CLI Argument 1:
If no path is specified to the portfolioBuilder.json file, the current directory will be checked for a case-insensitive PortfolioBuilder.json
file. This functionality can also be used by default by typing null
where this argument should be.
CLI Argument 2:
If no output location is provided, the file that is produced will be created in the local directory and be called :timestamp:-index.html
. For example: 20190210_1515_2104-index.html
. It follows the format of YYYYMMDD_kkmm_ssSS-index.html
. This functionality can also be used by default by typing null
where this argument should be.
CLI Argument 3:
If no path is specified to a template html file, a stock template will be used by default. This functionality can also be used by default by typing null
where this argument should be. See Tips and Gotchas for more information.
Use the HTML File however you'd like!
Back To Table of Contents
Example ProjectData.json
[
{
"name": "Example Project Name",
"hours": 100,
"link": "https://github.com/ajshiff/portfolio-builder",
"timeframe": "February 2019 - March 2019",
"description": "The main content description of your project goes here.",
"imgSrc": "./PATH/To/Image/Asset/You/Want/To/Reference.png",
"imgAlt": "Alt Text for your Image",
"skills": [
"NodeJS",
"ES6"
]
}
]
Back To Table of Contents
Tips and Gotchas
Creating Your Own Template HTMLs
If you use your own template, generate a default template, then copy and paste the css styling code from that page into a
portfolioBuilder.css
file, and link it somewhere in your template-page header tag.CSS defined in the template only effects items that are children of
class="portfolioBuilder"
elements.If you use your own html template file, it must have a
class="projects"
element inside of aclass="portfolioBuilder"
element. See code blocks below for example. The Project items generated will be appended to whatever is already inside of your projects div.
Invalid Example
<div class="portfolioBuilder projects"></div>
Valid Example
<div class="portfolioBuilder">
<div class="projects"></div>
</div>
The Output HTML File
The
<head>
tag of your HTML file will have templated meta tag attributes. It is recommended that you edit these meta fields as appropriate to your project before publishing.The required css stylings are included in your head tag,
The ProjectData.json
Make sure your
ProjectData.json
is an array of objects.None of the keys on the object are required, but including all of the keys from the example are recommended.
If you wish to explicitly define a key, but leave it empty, assign it a litteral
null
value. If you use an empty string (""
), that empty string will be treated as a normal string, as if you intended it to show up in your portfolio page.The
skills
property must be an array, or else your value will appear as one skill.The hours field can be a number or a string.
The
imgSrc
property will be copied verbatim into the<image>
"src" attribute on the HTML page.- This means that you have the flexability to link to an image somewhere else on the internet.
- If you choose to use a locally stored asset, it is recommended to use relative pathing that follows the data structure of your website.
- For example, if I had a file structure like the one below. If I wanted to save my new file,
myPortfolio.html
, into theprod
folder, and had an image I wanted to use in mymyPortfolio.html
calledproject.png
, I should copyproject.png
into my assets folder, and use the value./assets/project.png
for theimgSrc
key.
- For example, if I had a file structure like the one below. If I wanted to save my new file,
C:\\
|---My Website
|---prod
|---index.html
|---assets
|---Image1.png
|---Image2.png
|---Image3.png