Install

How to Install Bulma

  1. To use Bulma in your project, simply add the following line of code inside the head of your HTML document that you want to use Bulma in.

    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css" />

How to Install Express.js

  1. First, make a free Heroku account at https://signup.heroku.com/.
  2. Then, install the Heroku CLI onto your computer by following the instructions at https://devcenter.heroku.com/articles/heroku-cli/. Make sure to install Git (ensure to follow first time steps if you haven't installed Git before) before installing the Heroku CLI if you don't already have it. The link for the Git installation is available on the Heroku CLI installation website.
  3. After installing Heroku and Git, you must install Node.js which you can do at https://nodejs.org/en/download/.
  4. Now that you have installed Node.js, create a directory to hold your application, and make that your working directory.

    $ mkdir myapp
    $ cd myapp

  5. Use the npm init command to create a package.json file for your application.

    $ npm init

  6. This command prompts you for a number of things, such as the name and version of your application. For now, you can simply hit RETURN to accept the defaults.
  7. Now install Express in the myapp directory and save it in the dependencies list. For example:

    $ npm install express --save

  8. Insert the following script to the script section of the package.json file:

    "start": "node index.js"

    Your package.json file should now look like this:
    Steps
  9. Afterwards we write the code for your express server in the index.js file and save. More on how to write an express server will be located on the "Tutorial" page.
  10. Enter in the following commands:

    $ git init && git add . && git commit -m "init"
    $ heroku create
    $ git push heroku master