
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
jamia-all-courses
Advanced tools
A helpers for getting all courses available in Jamia Millia Islamia.
This repo contains index of courses available in Jamia Millia Islamia.
yarn/npm: directly install jamia-all-courses
yarn add jamia-all-courses
or
npm install --save jamia-all-courses
import allCourses from 'jamia-all-courses';
// or
// const allCourses = require('jamia-all-courses');
allCourses.map(({name: category, courses}) => {
console.log('- ' + category);
courses.map(({name: course, specializations}) => {
console.log(' - ' + course);
specializations.map(({name: specialization, code}) => {
console.log(' - ' + specialization, code);
})
})
});
Or import specific programme:
doctoralProgrammes
mastersProgrammes
postgraduateDiplomaProgrammes
undergraduateProgrammes
advancedDiplomaProgrammes
diplomaProgrammes
import {undergraduateProgrammes} from 'jamia-all-courses';
undergraduateProgrammes.courses.map(({name: course, specializations}) => {
console.log(' - ' + course);
specializations.map(({name: specialization, code}) => {
console.log(' - ' + specialization, code);
})
})
getCourse(hash)
: [category, course, specialization]
getCourseName(hash)
: Returns string of course and specialisation
import {getCourseName, getCourse} from "jamia-all-courses";
console.log(getCourseName('3fc6d'));
// B.Tech. Computer Engineering
console.log(getCourse('3fc6d'));
// ['Undergraduate Programmes', 'B.Tech.','Computer Engineering']
getCourse(hash)
: [category, course, specialization]
getCourseName(hash)
: Returns string of course and specialisation
[{
name: 'category',
courses: [{
name: 'course',
specializations: [{
name: 'specialization',
code: 'hash'
}]
}]
}]
FAQs
A helpers for getting all courses available in Jamia Millia Islamia.
We found that jamia-all-courses demonstrated a not healthy version release cadence and project activity because the last version was released 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
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.