DEV Community

Cover image for Creating a Portfolio with Node.js
Brennan K. Brown
Brennan K. Brown

Posted on • Updated on

Creating a Portfolio with Node.js

For only three weeks in May, I built a website from scratch using several different technologies and frameworks. My initial commit to the project’s repository was May 19th, and it was presented on June 8th.

For the front-end, I utilized the Bootstrap toolkit and jQuery framework in order to have the foundations of a solid, responsive mobile-first design. The rest of the JavaScript is vanilla.

For the back-end, I am using node.js with the Express framework on top, as well as Embedded JavaScript Templating as my template engine.

Additionally, I am using the NPM packages ESLint and Prettify for code analysis and pattern maintenance, the packages Mocha and Chai for testing, and the packages http-errors and body-parser for validation.

Finally, this website is currently being deployed on Heroku under a free Dyno plan, so I apologize for any issues regarding speed or connectivity!

Why This?

I decided to build my own web portfolio as the subject of this project to further my knowledge regarding back-end web technologies, while creating something that will be beneficial to my career. I hope that this demonstrative, visually-appealing website exemplifies my talents and character, as well as opens up opportunities to network with others.

Limitations: Through sheer luck, I managed to get my initial objectives set for this website completed on time, and in a presentable fashion. However, compared to the scope (and importance) of other group’s projects, I feel like there is a lot currently lacking. In theory, an informational website such as this could be displayed completely statically, not requiring such a robust back-end.

If I had extended time, I would have added an actual database component (Eg. MySQL or Redis) instead of simple .JSON files, as well as look into adding an authentication/security page. I would have also liked to have been able to work on more ambitious front-end aspects as well, such as a Life In Weeks visualization, or add a preprocessor to my styles such as SASS or LESS.

Current Pages

Currently, there are three separate pages on this website to demonstrate different features and functionality within the scope of the described framework:

  • Docs: is an example of a static webpage and has the project’s README instructions to download and deploy your own version of this open-sourced website.
  • Projects: is an example of a dynamic webpage that parses through a local .JSON file and pulls data to display in HTML.
  • Feedback: is also an example of a dynamic webpage, however it also allows the client/end-user to add to the local .JSON file, and has proper error-handling and validation of respective input fields.

This project is a collaboration between Duck Labs and EvolveU that aims to teach students the entirety of the spectrum of full-stack web development, starting with the visuals and UX of the front-end, and ending with the database and server communication of the back-end, with the result being a complete and functional website.

Specifically, this work is meant to exemplify the pedagogy of Project-based Learning. PBL is an instructional methodology that encourages students to learn and apply knowledge and skills through an engaging experience. PBL presents opportunities for deeper learning in-context and for the development of important skills tied to career readiness.

Why Project-based Learning?

In essence, the PBL model consists of these seven characteristics:

  • Focuses the student on a big open-ended question, challenge, or problem to research and respond to and/or solve.
  • Brings what students should academically know, understand, and be able to do into the equation.
  • Is inquiry-based.
  • Uses 21st-century skills such as critical thinking, communication, collaboration, and creativity, among others.
  • Builds student choice into the process.
  • Provides opportunities for feedback and revision of the plan and the project.
  • Requires students to present their problems, research process, methods, and results.

Final Thoughts

I feel as though the learning process was fast-paced and intense, which was very motivating. Having to create something within a deadline like this pushed me to work at the fullest of my potential.

It affected my learning greatly, for the better. There was no time for me to afford to be ambiguous or nebulous, and it really makes you appreciate how much specific programming information is searchable and how many shortcuts are available as well.

The Duck Lab teachers, Sheldon, Chris, and Tony all did excellent jobs at presenting their lessons over the course of the first two weeks. They were extremely helpful and informative and always open for questions on Discord. I really appreciate the fact they tried doing this, and I hope they do it again for the sake of future learners.

For future reference, I would say that you should start as soon as possible, and start small. To me, getting a functioning product somewhere near completed is far more meaningful than just barely getting started on something lofty and ambitious. I would most likely try to work on a team to expand on collaboration and working on project management. If possible, I would also like a few more lessons, though the free week was also very helpful.

In short, learning an entirely new concept and actually using it. Before starting this, I had no prior knowledge of Node.js, and now I can create any sort of website with it. That sort of creative freedom is very powerful, and feels like success. I feel as though I have grown substantially. Seeing my website deploy successfully for the first time after several hours of troubleshooting gave me a sense of confidence and self-worth that I don’t remember feeling before.


Development Documentation

Prerequisites

For development, you will only need Node.js and NPM installed in your environment.

If you’re on Windows, go on official Node.js website and download the installer. Also, be sure to have git available in your PATH, npm might need it (You can find git here).

If you’re on Ubuntu, you can install nodejs and npm easily with apt install, just run the following commands.

$ sudo apt install nodejs 
$ sudo apt install npm
Enter fullscreen mode Exit fullscreen mode

Other Operating Systems

You can find more information about the installation on the official Node.js website and the official NPM website.

If the installation was successful, you should be able to run the following command.

$ node --version
v8.11.3
$ npm --version
6.1.0
Enter fullscreen mode Exit fullscreen mode

If you need to update npm, you can make it using npm! Cool right? After running the following command, just open again the command line and be happy.

$ npm install npm -g
Enter fullscreen mode Exit fullscreen mode

Installation

$ git clone https://github.com/brennanbrown/duck-project.git
$ cd duck-project
$ npm i
Enter fullscreen mode Exit fullscreen mode

Running the project:

$ npm start
Enter fullscreen mode Exit fullscreen mode

Once the server has started up, you can visit it at localhost:3000/, or 127.0.0.1:3000/.

Roadmap and Contributing

See the open issues for a list of proposed features (and known issues).

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • Push to the Branch (git push origin feature/AmazingFeature)
  • Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Brennan K. Brown — @brennankbrownmail@brennanbrown.ca

Project Link: https://github.com/brennanbrown/duck-project

Acknowledgements and Resources

Top comments (1)

Collapse
 
chirag195 profile image
Chirag195

Hi, what was your approach while learning node and express js?
What has been the most interesting way of learning? Project based or from video tutorials?