{"id":15159492,"url":"https://github.com/jonaxplanta/lp4","last_synced_at":"2026-01-20T18:56:25.899Z","repository":{"id":255658357,"uuid":"853337877","full_name":"JonaxPlanta/LP4","owner":"JonaxPlanta","description":"Repository with codes and programs for Programming Language 4.","archived":false,"fork":false,"pushed_at":"2024-12-13T14:52:05.000Z","size":1202,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T16:52:26.213Z","etag":null,"topics":["express","http-server","javascript","learning","nodejs","nodemon","router","school-project","server"],"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/JonaxPlanta.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":"2024-09-06T13:08:18.000Z","updated_at":"2024-12-13T14:52:10.000Z","dependencies_parsed_at":"2024-09-06T15:50:59.654Z","dependency_job_id":"2bb625b6-f6df-46f0-b3dc-6f88fb80c487","html_url":"https://github.com/JonaxPlanta/LP4","commit_stats":{"total_commits":28,"total_committers":1,"mean_commits":28.0,"dds":0.0,"last_synced_commit":"96e3e4fb606ad80b93206c910dcb78437931fd5f"},"previous_names":["jonaxplanta/lp4"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonaxPlanta%2FLP4","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonaxPlanta%2FLP4/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonaxPlanta%2FLP4/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonaxPlanta%2FLP4/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JonaxPlanta","download_url":"https://codeload.github.com/JonaxPlanta/LP4/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247694892,"owners_count":20980731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["express","http-server","javascript","learning","nodejs","nodemon","router","school-project","server"],"created_at":"2024-09-26T21:22:59.564Z","updated_at":"2026-01-20T18:56:25.864Z","avatar_url":"https://github.com/JonaxPlanta.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## IFMS\n\n#### Technical Course in Computer Science - 6th Period - Morning Class\n\n#### Teacher: Vinícius Maeda - Student: João Flores\n\n#### Anotations, Codes and Programs for Programming Language 4 discipline\n\n---\n\n### Basics commands in Terminal\n\nList the content of a diretory (file)\n\n```\ndir\n```\n\nCreate a new diretory\n\n```\nmkdir \u003cfile-name\u003e\n```\n\nRemove an existing diretory\n\n```\nrmdir \u003cfile-name\u003e\n```\n\nAcess a file\n\n```\ncd \u003cfile-name\u003e\n```\n\nCleans terminal\n\n```\ncls\n```\n\nExit the file, returning one level\n\n```\ncd ..\n```\n\nExit the file, returning to C: file\n\n```\ncd /\n```\n\n---\n\n### Commands to create a Github repository using Terminal\n\nInitiate the versioning\n\n```\ngit init\n```\n\nVerify the project situation \n\n```\ngit status \n```\n\nAdd all untracked files\n\n```\ngit add . \n```\n\nAdd README markdown file\n\n```\ngit add README.md\n```\n\nExecute a commit (update) with message\n\n```\ngit commit -m \"message\"\n```\n\nLink the project to the main branch\n\n```\ngit branch -M main\n```\n\nExecute a remote link to a GitHub repository\n\n```\ngit remote add origin \u003crepository-url\u003e\n```\n\nPush all files to the main branch in repository\n\n```\ngit push -u origin main\n```\n\n---\n\n### Commands to update files in a Github repository\n\nAdd all files to upload to Github resository\n\n```\ngit add .\n```\n\nCreate a message to describe changes\n\n```\ngit commit -m \"message-to-add\"\n```\n\nPush all files to Github repository\n\n```\ngit push -u\n```\n\nVerifying if everything is in order\n\n```\ngit status\n```\n\n---\n\n### Commands to initiate a project using NodeJS\n\nInitiate a project by providing data manually\n\n```\nnpm init\n```\n\nInitiate a project using default data\n\n```\nnpm init -y\n```\n\n### Commands to install Node dependences\n\nExpress\n\n```\nnpm install express\n```\n\nNodemon\n\n```\nnpm install -g nodemon\n```\n\nNodemon Dev\n\n```\nnpm install --save-dev\n```\n\nBody Parser\n```\nnpm install body-parser\n```\n\n### Auto reset server\n\n#### Using Nodemon\n\nChange the package.json file\n\n```\n\"scripts\": {\n  \"test\": \"echo \\\"Error: no test specified\\\" \u0026\u0026 exit 1\",\n  \"dev\": \"nodemon \u003cfile-name.js\u003e\"\n},\n```\n\nExecute the following command\n\n```\nnpm run dev\n```\n\n#### Using --watch\n\nExecute the following command\n\n```\nnode --watch \u003cfile-name.js\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonaxplanta%2Flp4","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonaxplanta%2Flp4","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonaxplanta%2Flp4/lists"}