[koajs Tutorial #1] First static app with basic authentication, free hosting, free domain, advertising-free

in #utopian-io6 years ago

0.png

[koajs Tutorial #1] First static app with basic authentication, free hosting, free domain, advertising-free

Repository:

https://github.com/genrbe/my-tutorials-koajs

What will you learn?

How to create repository on github.
How to create service for static content using koajs.
How to set basic authentication.
How to deploy app on heroku.

Requirements

Account on github.
Account on Heroku.
Basic knowledge of java script programing.
Basic knowledge of nodejs.
Nodejs and editor Installed.

Level of difficulty:

Difficult

Tutorial content:

In the tutorial, I will try to explain how to create a web server which uses koajs framework

  1. Create a repository on github
  2. Clone the repository
  3. Write a code
  4. Add html content
  5. Run app (koajs)
  6. Push the code to a remote repository
  7. Deploy our app on heroku

(step 1) Create a repository on github

  • Log in to github
  • Go to the 'Repository' tab
  • Click 'new'
    2.png
  • Set 'Repository name'. For example: ‘my-tutorials-koajs’.
  • Click 'create'

(step 2) Clone repository

  • Follow the quick setup instruction on the GitHub website
    3.png
  • Create issue named ‘Serving static app (html) with basic authentication #1’
    5.png
  • Create a feature branch for the issue: ‘feature/#1’
    6.png

(step 3) Write a code

  • Initiate the program ‘npm init’
    7.png
  • Add koa package ‘npm i koa -g --save’
    8.png
  • Add koa-static package ‘npm i koa-static --save’
    9.png
  • Add koa-basic-auth package ‘npm i koa-basic-auth --save’
    10.png
  • Create the app.js with code:
    • start editor
      11.png
    • create app.js
      12.png
    • write code and save:
   const auth = require('koa-basic-auth');
   const Koa = require('koa');
   const app = new Koa();
  
   const PORT = process.env.PORT || 5000;

   app.use(auth({ name: 'admin', pass: 'admin' }));
   app.use(serve('./html'));
   app.listen(PORT);

   console.log('listening on port:' + PORT);

13.png

(step 4) Add html content

  • Create the directory 'html'
    mkdir html and cd ./html
    14.png
  • Get sample example from https://getbootstrap.com/docs/4.1/examples/blog/
    wget https://getbootstrap.com/docs/4.1/examples/blog/
    15.png
  • Download the required dependencies
    wget https://getbootstrap.com/docs/4.1/examples/blog/blog.css
    wget https://getbootstrap.com/docs/4.1/dist/css/bootstrap.min.css
    wget https://getbootstrap.com/docs/4.1/dist/js/bootstrap.min.js
    wget https://getbootstrap.com/docs/4.1/assets/js/vendor/popper.min.js
    wget https://getbootstrap.com/docs/4.1/assets/js/vendor/holder.min.js
    wget https://getbootstrap.com/docs/4.1/assets/js/vendor/jquery-slim.min.js

16.png

  • Correct dependencies in index.html
    from
<script src="../../assets/js/vendor/popper.min.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<script src="../../assets/js/vendor/holder.min.js"></script>

to

<script src="popper.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="holder.min.js"></script>

from

<link href="../../dist/css/bootstrap.min.css" rel="stylesheet">

to

<link href="blog.css" rel="stylesheet">

(step 5) Run app

  • Modify the package.json file add in scripts ' "start": "node apps.js" ’
    17.png

  • Run app
    npm start
    19.png

  • Check if it works
    18.png

(step 6) Push the code to a remote repository

  • Add .gitignore vi .gitignore
    20.png

  • Edit and insert node_modules
    21.png

  • Save ESC :wq

  • Add files git add .
    22.png

  • Commit
    23.png

  • Push
    25.png

  • Push to develop

    • click button "Compare & pull request"
      26.png
    • and click "Create pull request"
      27.png
  • Merge
    28.png

(step 7) Deploy our app on heroku

  • Log in heroku
    29.5.png
  • Create a new app
    30.png
  • In tab deploy. Deploy from github (from develop)
    31.png

And now it should work.

Go to own-app.herokuapp.com (example https://my-tutorials.herokuapp.com (admin/admin)).
32.png

Conclusion

In seven steps we have free static app and 8 lines of code.

Curriculum

[koajs Tutorial #1]
Proof of Work Done
Pull request: https://github.com/genrbe/my-tutorials-koajs/pull/3

Sort:  

Thank you for your contribution.

  • The tutorial is poorly structured.
  • There are parts of the code and commands that have little explanation, try to explain as much as possible.

See in this link an example of a good tutorial.

Your contribution has been evaluated according to Utopian policies and guidelines, as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, click here.


Need help? Write a ticket on https://support.utopian.io/.
Chat with us on Discord.
[utopian-moderator]

Hey @genrbe
Thanks for contributing on Utopian.
We’re already looking forward to your next contribution!

Want to chat? Join us on Discord https://discord.gg/h52nFrV.

Vote for Utopian Witness!

Congratulations @genrbe! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

You made more than 100 upvotes. Your next target is to reach 200 upvotes.

Click here to view your Board of Honor
If you no longer want to receive notifications, reply to this comment with the word STOP

Do not miss the last post from @steemitboard:

Saint Nicholas challenge for good boys and girls

Support SteemitBoard's project! Vote for its witness and get one more award!

Congratulations @genrbe! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 1 year!

You can view your badges on your Steem Board and compare to others on the Steem Ranking

Do not miss the last post from @steemitboard:

SteemitBoard - Witness Update
Vote for @Steemitboard as a witness to get one more award and increased upvotes!

Coin Marketplace

STEEM 0.28
TRX 0.12
JST 0.033
BTC 70130.51
ETH 3786.12
USDT 1.00
SBD 3.78