{"id":18615025,"url":"https://github.com/andrewjbateman/expressworks","last_synced_at":"2026-04-19T13:32:48.741Z","repository":{"id":96859141,"uuid":"132940061","full_name":"AndrewJBateman/Expressworks","owner":"AndrewJBateman","description":":clipboard: Exercises completed to learn Express.js","archived":false,"fork":false,"pushed_at":"2020-08-31T09:25:30.000Z","size":2007,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-17T01:34:32.652Z","etag":null,"topics":["challenges-solved","express","freecodecamp","jade","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndrewJBateman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-10T18:33:31.000Z","updated_at":"2020-12-19T20:26:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"b1868e15-c14c-42ad-9a9e-eb009e3e0872","html_url":"https://github.com/AndrewJBateman/Expressworks","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndrewJBateman/Expressworks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2FExpressworks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2FExpressworks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2FExpressworks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2FExpressworks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/Expressworks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2FExpressworks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["challenges-solved","express","freecodecamp","jade","nodejs"],"created_at":"2024-11-07T03:27:51.712Z","updated_at":"2026-04-19T13:32:48.544Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# :zap: Expressworks\n\n* Completed exercises from freeCodeCamp to learn about Express middleware\n\n**\\* Note: to open web links in a new window use: _ctrl+click on link_**\n\n## :page_facing_up: Table of contents\n\n* [:zap: Expressworks](#zap-expressworks)\n\t* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)\n\t* [:books: General info](#books-general-info)\n\t* [:camera: Screenshots](#camera-screenshots)\n\t* [:signal_strength: Technologies](#signal_strength-technologies)\n\t* [:floppy_disk: Setup](#floppy_disk-setup)\n\t* [:computer: Code Examples](#computer-code-examples)\n\t* [:cool: Features](#cool-features)\n\t* [:clipboard: Status \u0026 To-Do List](#clipboard-status--to-do-list)\n\t* [:clap: Inspiration](#clap-inspiration)\n\t* [:envelope: Contact](#envelope-contact)\n\n## :books: General info\n\n* This is a record of the javascript solutions to the [freeCodeCamp Express Challenges](https://www.freecodecamp.org/learn/apis-and-microservices/basic-node-and-express/)\n* In exercise 3 Jade is used for templating in Node.js\n\n## :camera: Screenshots\n\n![Example screenshot](./img/work.png).\n\n## :signal_strength: Technologies\n\n* [Express v4](https://expressjs.com/) Fast, unopinionated, minimalist web framework for Node.js\n* [Jade language](https://jade-lang.com/) node templating engine\n\n## :floppy_disk: Setup\n\n* Setup is not applicable. These javascript files were run inside a c9 backend challenges boilerplate (FCC currently uses Repl.it for this)\n\n## :computer: Code Examples\n\n* extract from `8_json.js` to create a server that reads a file, parses it to JSON and outputs the content\nto the user.\n\n```javascript\napp.get('/books', function(req, res){ //'/books' resource path\n  var filename = process.argv[3];\n  fs.readFile(filename, function(err, data){\n    if (err) {\n      return res.sendStatus(500);\n    }\n    res.json(JSON.parse(data));\n  });\n});\n```\n\n## :cool: Features\n\n* Jade is much more concise than HTML\n\n## :clipboard: Status \u0026 To-Do List\n\n* Status: Working\n* To-Do: nothing\n\n## :clap: Inspiration\n\n* [freeCodeCamp: Introduction to the Basic Node and Express Challenges](https://www.freecodecamp.org/learn/apis-and-microservices/basic-node-and-express/)\n* [Sanjay Guruprasad: A Jade Tutorial for Beginners](https://www.sitepoint.com/jade-tutorial-for-beginners/#:~:text=Jade%20is%20an%20elegant%20templating,of%20advantages%20over%20plain%20HTML.)\n* [Quora: What is Express.js? What are its advantages?](https://www.quora.com/What-is-Express-js-What-are-its-advantages)\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://www.andrewbateman.org) - you are welcome to [send me a message](https://andrewbateman.org/contact)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fexpressworks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fexpressworks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fexpressworks/lists"}