
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
codecareernepal
Advanced tools
A small Node.js package to scrape job listings from multiple Nepal-based (and related) company career pages.
This repository exports a simple API you can use to fetch job listings for a supported company.
Install from npm (if published) or use locally by cloning this repo.
From npm:
npm install job-listings-scraper
From the repository (local development):
git clone https://github.com/anishjoshi1999/CodeCareerNepal-Server.git
cd "CodeCareerNepal-Server"
npm install
The package exposes a single convenience function getJobs(companyName) from the module entrypoint (index.js). It returns a Promise which resolves to an array of job objects scraped for the given company.
Example (Node.js):
const { getJobs } = require('codecareernepal'); // or require('./index') when using repo locally
(async () => {
try {
const jobs = await getJobs('Cotiviti');
console.log(jobs);
} catch (err) {
console.error('Error:', err.message);
}
})();
API contract
Listing available companies
If you're unsure which company names to pass to getJobs(), use the helper listCompanies() which returns the registered company names the package knows about.
Example:
const { listCompanies } = require('codecareernepal');
console.log(listCompanies());
// -> ['Cotiviti', 'FuseMachine', 'LeapFrog', ...]
Tip: listCompanies() returns the same strings registered in the index.js entrypoint. Use any of those strings (case-insensitive) with getJobs(companyName).
Scripts
npm start — runs node index (entrypoint)npm run dev — runs nodemon index.js (requires nodemon to be installed globally or as a devDependency)Supported companies
The following company names (case-insensitive) are wired into the entrypoint. Use one of these strings with getJobs():
verisk in code)Note: The exact internal module names map from the Companies/ folder. If a company entry throws "not found", check index.js for the exact registered name strings and use the same.
Troubleshooting
Companies/.package.json). Install the dependencies with npm install before running.Contributing
Contributions are welcome. To add a new company scraper:
Companies/ that exports a scraping function (e.g. scrapeNewCo) and exposes it via module.exports.index.js by adding an entry to the scrapingFunctions array with a name and scrape reference.License
MIT
FAQs
Scrape job listings from multiple companies
We found that codecareernepal demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.