Skip to content

famazo93/web_navigator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web_navigator

This project, Web Navigator, simulates the navigational operations of a web browser such as:

  • opening a new web page,
  • navigating back a page and
  • going forward a page.

It uses the Stack class to maintain the history of visited pages with a backPages stack and a nextPages stack. When we open a new page, we push the previous page on the backPages stack. When we revisit an old page and then visit a new page from there, we clear any content in the nextPages stack.

When we revisit a back page, we push the current page on the nextPages stack. Like the back button and the next button on a web browser, the back page and next page operations can be enabled or disabled depending on the state of the two stacks. For example, if the backPages stack is empty, the back operation is disabled and will be enabled only when the stack has content.

User input is required to:

  • enter a new page to be visited,
  • navigate backward or forward a page, and
  • to quit the program.

The option to navigate forward or backward is conditional depending on user input and the state of the stacks.

At every operation other than quitting, we display information about the current page and the top element of the two stacks.

Required npm package: prompt-sync npm i prompt-sync

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published