You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
3.1 KiB
25 lines
3.1 KiB
import { addBanner, addArticle, addTitle, addHeader, addParagraph, addClassParagraph, addSubHeader, addOrderedList, addUnorderedList, addBlockquote, addInset, addInsetList, addInsetCodeListing, addInsetBulletList, addImageWithCaption, addButtonGroup, addSidebar, addSyntax, menu, global_menu } from '/scripts/import.js'; |
|
import { local_menu } from '/scripts/webdev.js'; |
|
|
|
const heading = document.querySelector(".heading"); |
|
const global = document.querySelector(".global_menu"); |
|
const local = document.querySelector(".local_menu"); |
|
const sidebar = document.querySelector(".sidebar"); |
|
const main = document.querySelector(".main_content"); |
|
|
|
heading.append(addTitle("Introducing Postman")); |
|
heading.append(addParagraph("David Fancher - LinkedIn Learning - April 2019")); |
|
heading.append(addParagraph("Chapter 5 - Conclusion")); |
|
|
|
main.append(addHeader("Next Steps")) |
|
main.append(addParagraph("This course provides a useful introduction to Postman, but it is only an introduction. There are several other courses that are either directly or indirectly relvant to Postman. A good example of this is the course, <a href='https://www.linkedin.com/learning/postman-essential-training'>Postman Essential Training</a> which I have had a quick look at. It doesn't (as the name suggest) seem to be much more advanced than this course. It is slightly shorter but was published a year later but at the very least, I think it would be worth looking at even if only to look at the things covered in it that are not in David's course. I would expect there to be quite a bit of overlap.")) |
|
main.append(addParagraph("In any case, learning Postman can be useful if you want to pursue other courses in API development. For example, it can be useful for the learning path, <a href='https://www.linkedin.com/learning/paths/become-a-restful-api-developer'>Become a RESTful API Developer</a> (this is quite a short path made up of 5 courses with a total viewing time of 6 hours and 15 minutes) although the path does not include a course specifically covering Postman. I would guess that at the very least, a working knowledge of Postman would be helpful in testing the API's you create there - assuming you do!")) |
|
main.append(addParagraph("Other tools you can use to help develop your knowledge of Postman include:")) |
|
main.append(addSubHeader("EXERCISE FILES")) |
|
main.append(addParagraph("The learning materials for this course which in addition to providing an API you can play with, also provides a complete collection of requests you can import and reference.")) |
|
main.append(addSubHeader("POSTMAN DOCUMENTATION")) |
|
main.append(addParagraph("You can use the docs to learn about some of the advanced features of Postman not covered by this course including scripting, API Mocking amd API Monitoring.")) |
|
main.append(addSubHeader("PRACTICE")) |
|
main.append(addParagraph("It's important to remember that Postman is not the only way to interact with an API but it is useful, particularly when it comes to testing the API. If you are using or have built an API, using Postman to interact with it can help to solidify your knowledge with it.")) |
|
|
|
addSidebar("webdev"); |