DEV Community

Jan Prazak
Jan Prazak

Posted on

1

OMDb-search (JS code demo)

JavaScript demo: search for movies in The OMDb (The Open Movie Database).

So finally I "finished" one of my learning projects in a way it can actually be useful to someone.

It uses some important features of ES6, namely JS modules and asynchronous XHR. I intentionally avoided using the new Fetch API to show how the old good XHR can be transformed into async mode, it shows nicely how promises work in modern JS. It also uses the WebStorage API (localStorage - for storing the API key to browser) and the Web Animations API for the loader animation.

GitHub project page: https://github.com/Amarok24/OMDb-search

Screenshot:
OMDb-search

Top comments (0)

This post blew up on DEV in 2020:

js visualized

🚀⚙️ JavaScript Visualized: the JavaScript Engine

As JavaScript devs, we usually don't have to deal with compilers ourselves. However, it's definitely good to know the basics of the JavaScript engine and see how it handles our human-friendly JS code, and turns it into something machines understand! 🥳

Happy coding!

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay