https://github.com/piyalidas10/job-search-api
Job search using Nodejs, Expressjs and EJS but No frontend framework
https://github.com/piyalidas10/job-search-api
api ejs express express-js expressjs github-api jobs-search node nodejs
Last synced: about 1 year ago
JSON representation
Job search using Nodejs, Expressjs and EJS but No frontend framework
- Host: GitHub
- URL: https://github.com/piyalidas10/job-search-api
- Owner: piyalidas10
- Created: 2020-02-16T09:05:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T01:59:41.000Z (over 3 years ago)
- Last Synced: 2024-11-20T23:47:22.758Z (over 1 year ago)
- Topics: api, ejs, express, express-js, expressjs, github-api, jobs-search, node, nodejs
- Language: JavaScript
- Homepage:
- Size: 471 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Live URL
```
https://piyali-job-search.herokuapp.com/
```
# Run Application
```
npm start
http://localhost:3000/
```
### Call External API Using Node Js https & request module
```
https://www.youtube.com/watch?v=ZbtZ_79UmjI
https://github.com/martandsingh/CallExternalApiUsingNodeJs
```
### In Node.js, how to import functions from another JavaScript file
```
https://stackoverflow.com/questions/47001537/how-to-include-external-js-file-to-ejs-node-template-page
https://www.apharmony.com/software-sagacity/2014/10/node-js-ejs-function-in-module/
https://www.systutorials.com/241622/in-node-js-how-to-import-functions-from-another-javascript-file/
```
### Import DOM in nodejs
JavaScript doesn't have a default document global. Browsers provide one, but your Node.js code doesn't run in a browser, it runs in the Node.js environment (e.g., as an application on your workstation, or as a server process, etc.).
```
https://github.com/jsdom/jsdom
https://www.npmjs.com/package/node-jsdom
```
https://stackoverflow.com/questions/42111854/javascript-addeventlistener-on-all-created-li-elements
### Error Handling and Running an Express.js
```
https://webapplog.com/error-handling-and-running-an-express-js-app/
```