Muje medical surgical nursing k paper ki preparation krni hai jismain go dosordes ek lambaa syllabus hai wo muje smjao
BSc Nursing Medical Surgical Nursing complete syllabus INC India topics
https://www.pw.live/nursing/exams/medical-surgical-nursing-s…
Ateyy file bnao jo tum ne text lika hai usse ek doc file bnao aesthetic look main
ls -la /home/daytona/workspace/ && ls /home/daytona/skills/docx/
mkdir -p /home/daytona/workspace/med-surg-nursing && node --version && npm list -g docx 2>/dev/null | head -5
~/med-surg-nursing/create_doc.js
const {
Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
HeadingLevel, AlignmentType, BorderStyle, WidthType, ShadingType,
VerticalAlign, PageNumber, Header, Footer, PageBreak,
UnderlineType, TableOfContents
} = require('docx');
const fs = require('fs');
// ── Colour Palette ──────────────────────────────────────────────────────────
const TEAL = "1A6B6B";
const TEAL_LIGHT = "E8F5F5";
const ACCENT = "D4A017"; // gold accent
const WHITE = "FFFFFF";
const DARK = "1C1C1C";
const GRAY_TEXT = "555555";
const SECTION_BG = "F0F8F8";
// ── Helper: horizontal rule ─────────────────────────────────────────────────
const HR = () => new Paragraph({
border: { bottom: { color: TEAL, size: 6, space: 1, style: BorderStyle.SINGLE } },
spacing: { after: 160 }
});
// ── Helper: spacer ──────────────────────────────────────────────────────────
const spacer = (pts = 200) => new Paragraph({ spacing: { after: pts } });
// ── Helper: bullet ──────────────────────────────────────────────────────────
const bullet = (text, sub = false) => new Paragraph({
bullet: { level: sub ? 1 : 0 },
indent: { left: sub ? 900 : 500 },
spacing: { after: 80, before: 40 },
children: [new TextRun({ text, font: "Calibri", size: 21, color: DARK })]
});
// ── Helper: styled section heading ─────────────────────────────────────────
const sectionHeader = (text, emoji = "") => [
new Paragraph({
spacing: { before: 320, after: 0 },
shading: { type: ShadingType.CLEAR, fill: TEAL },
indent: { left: 0, right: 0 },
children: [
new TextRun({
text: ` ${emoji} ${text} `,
bold: true, color: WHITE, size: 26, font: "Calibri"
})
]
}),
new Paragraph({
spacing: { before: 0, after: 200 },
shading: { type: ShadingType.CLEAR, fill: ACCENT },
children: [new TextRun({ text: " ", size: 6 })]
})
];
// ── Helper: sub-section heading ─────────────────────────────────────────────
const subSection = (text) => new Paragraph({
spacing: { before: 240, after: 100 },
border: { left: { color: ACCENT, size: 14, space: 6, style: BorderStyle.SINGLE } },
indent: { left: 200 },
children: [new TextRun({ text, bold: true, color: TEAL, size: 24, font: "Calibri" })]
});
// ── Helper: info box ─────────────────────────────────────────────────────────
const infoBox = (text) => new Paragraph({
shading: { type: ShadingType.CLEAR, fill: TEAL_LIGHT },
border: {
top: { color: TEAL, size: 4, style: BorderStyle.SINGLE },
bottom: { color: TEAL, size: 4, style: BorderStyle.SINGLE },
left: { color: TEAL, size: 18, style: BorderStyle.SINGLE },
right: { color: TEAL, size: 4, style: BorderStyle.SINGLE }
},
indent: { left: 300, right: 200 },
spacing: { before: 100, after: 120 },
children: [new TextRun({ text, italics: true, color: TEAL, size: 20, font: "Calibri" })]
});
// ── Helper: two-col table row ───────────────────────────────────────────────
const twoColRow = (left, right, shade = false) => new TableRow({
children: [
new TableCell({
shading: shade ? { type: ShadingType.CLEAR, fill: SECTION_BG } : undefined,
width: { size: 3500, type: WidthType.DXA },
verticalAlign: VerticalAlign.CENTER,
children: [new Paragraph({
indent: { left: 120 },
children: [new TextRun({ text: left, bold: true, size: 20, font: "Calibri", color: TEAL })]
})]
}),
new TableCell({
shading: shade ? { type: ShadingType.CLEAR, fill: SECTION_BG } : undefined,
width: { size: 5500, type: WidthType.DXA },
children: [new Paragraph({
indent: { left: 120 },
children: [new TextRun({ text: right, size: 20, font: "Calibri", color: DARK })]
})]
})
]
});
// ══════════════════════════════════════════════════════════════════════════════
// DOCUMENT BUILD
// ══════════════════════════════════════════════════════════════════════════════
const doc = new Document({
styles: {
default: {
document: {
run: { font: "Calibri", size: 22, color: DARK },
paragraph: { spacing: { after: 120 } }
}
}
},
sections: [{
properties: {
page: {
margin: { top: 900, right: 900, bottom: 900, left: 900 }
}
},
headers: {
default: new Header({
children: [new Paragraph({
border: { bottom: { color: TEAL, size: 6, style: BorderStyle.SINGLE } },
spacing: { after: 80 },
children: [
new TextRun({ text: "📚 Medical Surgical Nursing | BSc Nursing Study Guide", size: 18, color: GRAY_TEXT, font: "Calibri" }),
new TextRun({ text: "\t", size: 18 }),
]
})]
})
},
footers: {
default: new Footer({
children: [new Paragraph({
border: { top: { color: TEAL, size: 6, style: BorderStyle.SINGLE } },
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "Page ", size: 18, color: GRAY_TEXT }),
new TextRun({ children: [PageNumber.CURRENT], size: 18, color: TEAL }),
new TextRun({ text: " | Prepared by Orris AI", size: 16, color: GRAY_TEXT, italics: true })
]
})]
})
},
children: [
// ═══ COVER ═══════════════════════════════════════════════════════════
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 800, after: 0 },
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [new TextRun({ text: " ", size: 4 })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 0 },
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [
new TextRun({ text: "🏥 MEDICAL SURGICAL NURSING", bold: true, size: 56, color: WHITE, font: "Calibri" })
]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 0 },
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [
new TextRun({ text: "Complete Syllabus — BSc Nursing", size: 30, color: TEAL_LIGHT, font: "Calibri", italics: true })
]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 0 },
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [new TextRun({ text: "2nd Year & 3rd Year | INC Curriculum", size: 22, color: WHITE, font: "Calibri" })]
}),
new Paragraph({
alignment: AlignmentType.CENTER,
spacing: { before: 0, after: 400 },
shading: { type: ShadingType.CLEAR, fill: ACCENT },
children: [new TextRun({ text: " Topic-wise Detailed Explanation ", size: 20, bold: true, color: WHITE, font: "Calibri" })]
}),
spacer(400),
// ═══ OVERVIEW TABLE ═══════════════════════════════════════════════════
infoBox("Medical Surgical Nursing (Med-Surg) critically sick adults ki comprehensive nursing care ke baare mein hai. Yeh subject 2nd aur 3rd Year BSc Nursing mein padhaya jaata hai aur board exams mein highest weightage rakhta hai."),
spacer(200),
new Table({
width: { size: 9000, type: WidthType.DXA },
rows: [
new TableRow({
tableHeader: true,
children: [
new TableCell({
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: "Paper", bold: true, color: WHITE, size: 22, font: "Calibri" })] })]
}),
new TableCell({
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: "Year", bold: true, color: WHITE, size: 22, font: "Calibri" })] })]
}),
new TableCell({
shading: { type: ShadingType.CLEAR, fill: TEAL },
children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: "Focus", bold: true, color: WHITE, size: 22, font: "Calibri" })] })]
})
]
}),
twoColRow("Med-Surg Nursing I", "2nd Year", true),
twoColRow("Med-Surg Nursing II", "3rd Year", false),
]
}),
spacer(300),
// ══════════════════════════════════════════════════════════════════════
// PAPER I — 2nd YEAR
// ══════════════════════════════════════════════════════════════════════
new Paragraph({ children: [new PageBreak()] }),
...sectionHeader("MED-SURG NURSING I — 2nd Year Syllabus", "📘"),
// ── Unit 1 ──
subSection("Unit 1: Introduction & Nursing Assessment"),
bullet("Concept of Medical-Surgical Nursing aur scope"),
bullet("Adult patient ki nursing assessment ka process"),
bullet("Health history lena — subjective vs objective data"),
bullet("Physical examination techniques: inspection, palpation, percussion, auscultation"),
bullet("Functional health patterns — Gordon's 11 patterns"),
bullet("Nursing Diagnosis formulation (NANDA framework)"),
bullet("Nursing care plan banana"),
spacer(100),
// ── Unit 2 ──
subSection("Unit 2: Pathophysiological Mechanisms of Disease"),
infoBox("Yeh unit samjhata hai ke disease process kaise shuru hota hai — cell level se systemic level tak."),
bullet("Cell injury ke causes: ischemia, toxins, infection, radiation"),
bullet("Inflammation — acute vs chronic"),
bullet("Repair aur regeneration of tissues"),
bullet("Neoplasia — benign vs malignant tumor"),
bullet("Shock ke types: hypovolemic, cardiogenic, distributive, obstructive"),
bullet("Sepsis aur SIRS (Systemic Inflammatory Response Syndrome)"),
spacer(100),
// ── Unit 3 ──
subSection("Unit 3: Altered Immune Response"),
bullet("Immunity ke types: innate vs adaptive"),
bullet("Hypersensitivity reactions — Type I, II, III, IV (Gell-Coombs classification)"),
bullet("Anaphylaxis — symptoms, emergency management"),
bullet("Autoimmune disorders ka overview"),
bullet("HIV/AIDS — pathophysiology, stages, nursing care"),
bullet("Organ transplant patients mein immunosuppression"),
spacer(100),
// ── Unit 4 ──
subSection("Unit 4: Fluid & Electrolyte Balance and Imbalance"),
bullet("Body fluid compartments: ICF, ECF"),
bullet("Osmolarity, osmolality, tonicity"),
bullet("Fluid imbalances: dehydration, overhydration, edema"),
bullet("Electrolyte imbalances:"),
bullet("Hypo/Hypernatremia (Na+)", true),
bullet("Hypo/Hyperkalemia (K+)", true),
bullet("Hypo/Hypercalcemia (Ca++)", true),
bullet("Hypo/Hypermagnesemia (Mg++)", true),
bullet("Acid-base balance: metabolic/respiratory acidosis & alkalosis"),
bullet("IV fluid therapy — types of IV fluids, nursing responsibilities"),
bullet("Blood transfusion — procedure, complications, nursing care"),
spacer(100),
// ── Unit 5 ──
subSection("Unit 5: Operation Theatre Technique"),
bullet("OT ka environment aur asepsis principles"),
bullet("Sterilization aur disinfection methods"),
bullet("Surgical team members aur unke roles"),
bullet("Patient positioning in OT"),
bullet("Surgical instruments ki pehchaan aur handling"),
bullet("Pre-operative preparation — patient physical aur psychological"),
bullet("Consent, bowel prep, skin prep"),
spacer(100),
// ── Unit 6 ──
subSection("Unit 6: Management of Patients Undergoing Surgery"),
bullet("Pre-operative assessment — history, examination, investigations"),
bullet("Pre-op medications: sedatives, antiemetics, antibiotics"),
bullet("Intra-operative nursing: scrub nurse vs circulating nurse"),
bullet("Anesthesia types: general, regional, local"),
bullet("Post-operative care in PACU (recovery room)"),
bullet("Post-op complications:"),
bullet("Wound infection, dehiscence, evisceration", true),
bullet("Deep vein thrombosis (DVT)", true),
bullet("Pulmonary embolism", true),
bullet("Atelectasis, pneumonia", true),
bullet("Urinary retention, constipation", true),
bullet("Pain management post-surgery"),
bullet("Wound dressing aur drain care"),
spacer(100),
// ── Unit 7 ──
subSection("Unit 7: Respiratory System Disorders"),
infoBox("Respiratory disorders — exam mein sabse zyada important unit!"),
bullet("Upper Respiratory Infections: common cold, sinusitis, tonsillitis, laryngitis"),
bullet("Pneumonia — types, causes, assessment, nursing management"),
bullet("Tuberculosis (TB) — pathophysiology, DOTs therapy, infection control"),
bullet("Chronic Obstructive Pulmonary Disease (COPD)"),
bullet(" Emphysema aur Chronic Bronchitis ka difference", true),
bullet(" Bronchodilators ka use, oxygen therapy precautions", true),
bullet("Asthma — triggers, status asthmaticus, nebulization"),
bullet("Pleural effusion, pneumothorax, hemothorax"),
bullet("Lung cancer — types, staging, nursing care"),
bullet("Chest physiotherapy techniques"),
bullet("Mechanical ventilation — settings, weaning, nursing care"),
bullet("Tracheostomy care"),
spacer(100),
// ── Unit 8 ──
subSection("Unit 8: Gastrointestinal Disorders"),
bullet("GI assessment — history, physical exam, diagnostic tests (endoscopy, colonoscopy)"),
bullet("Oral disorders: stomatitis, oral cancer"),
bullet("Esophageal disorders: GERD, achalasia, esophageal cancer"),
bullet("Peptic Ulcer Disease (PUD) — H. pylori, treatment, complications"),
bullet("Gastritis — acute vs chronic"),
bullet("Inflammatory Bowel Disease: Crohn's vs Ulcerative Colitis"),
bullet("Irritable Bowel Syndrome (IBS)"),
bullet("Appendicitis — assessment, McBurney's point, appendectomy care"),
bullet("Intestinal obstruction — paralytic ileus vs mechanical"),
bullet("Colorectal cancer — screening, surgical care, colostomy care"),
bullet("Liver disorders:"),
bullet("Hepatitis A, B, C, D, E — prevention aur care", true),
bullet("Liver cirrhosis — complications (ascites, varices, encephalopathy)", true),
bullet("Liver failure", true),
bullet("Cholecystitis aur cholelithiasis (gallstones), cholecystectomy"),
bullet("Pancreatitis — acute vs chronic, nursing management"),
bullet("Nasogastric tube insertion aur tube feeding"),
spacer(100),
// ── Unit 9 ──
subSection("Unit 9: Metabolic & Endocrine Disorders"),
bullet("Diabetes Mellitus — Type 1 vs Type 2"),
bullet(" Insulin therapy — types, administration, sites", true),
bullet(" Oral hypoglycemics", true),
bullet(" Diabetic Ketoacidosis (DKA) management", true),
bullet(" Hyperosmolar Hyperglycemic State (HHS)", true),
bullet(" Chronic complications: neuropathy, retinopathy, nephropathy, foot care", true),
bullet("Thyroid disorders:"),
bullet("Hypothyroidism — myxedema", true),
bullet("Hyperthyroidism — Graves' disease, thyroid storm", true),
bullet("Thyroidectomy — post-op care, hypocalcemia watch", true),
bullet("Parathyroid disorders: hypo/hyperparathyroidism"),
bullet("Adrenal disorders:"),
bullet("Addison's disease (adrenal insufficiency)", true),
bullet("Cushing's syndrome (excess cortisol)", true),
bullet("Pheochromocytoma", true),
bullet("Pituitary disorders: SIADH, Diabetes Insipidus"),
spacer(100),
// ── Unit 10 ──
subSection("Unit 10: Renal & Urinary Disorders"),
bullet("Renal anatomy aur physiology review"),
bullet("Urinary tract infections (UTI) — cystitis, pyelonephritis"),
bullet("Urolithiasis (kidney stones) — types, management, lithotripsy"),
bullet("Acute Kidney Injury (AKI) — pre-renal, intra-renal, post-renal"),
bullet("Chronic Kidney Disease (CKD) — stages, complications"),
bullet("Dialysis:"),
bullet("Hemodialysis — AV fistula care, session care", true),
bullet("Peritoneal dialysis — procedure, complications", true),
bullet("Glomerulonephritis — nephrotic vs nephritic syndrome"),
bullet("Renal transplant — pre/post-op care, rejection signs"),
bullet("Bladder disorders: cystitis, bladder cancer"),
bullet("Prostate disorders: BPH, prostate cancer"),
bullet("Catheterization — indwelling catheter care"),
spacer(100),
// ── Unit 11 ──
subSection("Unit 11: Neurological Disorders"),
bullet("Neurological assessment — Glasgow Coma Scale (GCS), pupil check, reflexes"),
bullet("Increased Intracranial Pressure (IICP) — signs, management, positioning"),
bullet("Stroke (CVA) — ischemic vs hemorrhagic"),
bullet(" FAST recognition, tPA thrombolysis, nursing care", true),
bullet("Head injury — concussion, contusion, epidural/subdural hematoma"),
bullet("Meningitis — bacterial vs viral, LP, nursing isolation"),
bullet("Encephalitis"),
bullet("Epilepsy aur Seizure Management — status epilepticus"),
bullet("Parkinson's Disease — TRAP symptoms, dopaminergic drugs, safety"),
bullet("Alzheimer's Disease — stages, nursing care"),
bullet("Multiple Sclerosis — relapsing-remitting, nursing management"),
bullet("Guillain-Barre Syndrome — ascending paralysis, respiratory watch"),
bullet("Myasthenia Gravis — cholinergic vs myasthenic crisis"),
bullet("Spinal cord injury — levels, ASIA classification, complications"),
spacer(100),
// ── Unit 12 ──
subSection("Unit 12: Connective Tissue & Collagen Disorders"),
bullet("Rheumatoid Arthritis — morning stiffness, drug therapy (DMARDs)"),
bullet("Systemic Lupus Erythematosus (SLE) — butterfly rash, multisystem"),
bullet("Osteoarthritis — weight-bearing joints, conservative management"),
bullet("Gout — hyperuricemia, allopurinol, dietary advice"),
bullet("Scleroderma, Polymyositis"),
spacer(100),
// ── Unit 13 ──
subSection("Unit 13: Nursing Management of the Elderly"),
bullet("Physiological changes of aging — all body systems"),
bullet("Polypharmacy — risks, nursing responsibility"),
bullet("Falls prevention — risk assessment, environment modification"),
bullet("Dementia aur depression in elderly"),
bullet("Elder abuse — types, assessment, reporting"),
bullet("Palliative care principles"),
spacer(300),
// ══════════════════════════════════════════════════════════════════════
// PAPER II — 3rd YEAR
// ══════════════════════════════════════════════════════════════════════
new Paragraph({ children: [new PageBreak()] }),
...sectionHeader("MED-SURG NURSING II — 3rd Year Syllabus", "📗"),
// ── Unit 1 ──
subSection("Unit 1: Oncology Nursing"),
infoBox("Cancer nursing — pathophysiology se palliative care tak — ek complete unit hai."),
bullet("Cancer ka pathophysiology — cell cycle, carcinogens, tumor markers"),
bullet("Cancer staging — TNM classification"),
bullet("Cancer treatment modalities:"),
bullet("Surgery — curative, palliative, prophylactic", true),
bullet("Chemotherapy — cell cycle specific/non-specific drugs, side effects", true),
bullet("Radiation therapy — external beam, brachytherapy, safety precautions", true),
bullet("Immunotherapy, targeted therapy, hormone therapy", true),
bullet("Bone marrow / stem cell transplant", true),
bullet("Oncological emergencies: tumor lysis syndrome, SVC syndrome, spinal cord compression"),
bullet("Cancer pain management — WHO analgesic ladder"),
bullet("Palliative care aur end-of-life nursing"),
bullet("Psychosocial support — patient aur family"),
spacer(100),
// ── Unit 2 ──
subSection("Unit 2: Breast Disorders"),
bullet("Breast anatomy aur self-breast examination (SBE) teaching"),
bullet("Fibroadenoma, fibrocystic disease"),
bullet("Breast cancer — risk factors, types, staging"),
bullet("Mastectomy types: lumpectomy, simple, modified radical mastectomy"),
bullet("Post-mastectomy nursing care — lymphedema prevention, arm exercises"),
bullet("Breast reconstruction — patient education"),
spacer(100),
// ── Unit 3 ──
subSection("Unit 3: Integumentary System Disorders"),
bullet("Skin assessment — lesions identification: macule, papule, vesicle, pustule"),
bullet("Common skin infections: impetigo, cellulitis, tinea, herpes"),
bullet("Dermatitis — contact, atopic, seborrheic"),
bullet("Psoriasis — plaques, management, nursing care"),
bullet("Burns:"),
bullet("Classification: superficial, partial thickness, full thickness", true),
bullet("Rule of Nines — TBSA calculation", true),
bullet("Parkland formula — fluid resuscitation", true),
bullet("Burn wound care, infection prevention, grafting", true),
bullet("Rehabilitation of burn patients", true),
bullet("Pressure ulcers (Bedsores) — staging, prevention, wound care"),
bullet("Skin cancer — BCC, SCC, Melanoma"),
spacer(100),
// ── Unit 4 ──
subSection("Unit 4: Ophthalmology & Ophthalmic Nursing"),
bullet("Eye assessment — visual acuity, visual fields, fundoscopy"),
bullet("Refractive errors: myopia, hyperopia, astigmatism"),
bullet("Cataract — signs, surgical care, IOL, post-op nursing"),
bullet("Glaucoma — open-angle vs closed-angle, IOP, medications"),
bullet("Retinal detachment — 'curtain falling' symptom, surgical management"),
bullet("Diabetic retinopathy, age-related macular degeneration"),
bullet("Eye infections: conjunctivitis, corneal ulcer"),
bullet("Eye drops instillation technique"),
spacer(100),
// ── Unit 5 ──
subSection("Unit 5: Ear, Nose & Throat (ENT) Nursing"),
bullet("Ear assessment — hearing tests (Weber, Rinne)"),
bullet("Otitis media — acute vs chronic, myringotomy"),
bullet("Hearing loss — conductive vs sensorineural"),
bullet("Meniere's disease — vertigo, tinnitus, nursing care"),
bullet("Nose disorders: epistaxis management (nasal packing), sinusitis, nasal polyp"),
bullet("Throat disorders: tonsillitis, peritonsillar abscess, laryngeal cancer"),
bullet("Tracheostomy — indications, care, suctioning technique"),
spacer(100),
// ── Unit 6 ──
subSection("Unit 6: Cardiovascular, Circulatory & Hematological Disorders"),
infoBox("Cardiovascular — exam ka sabse bada aur high-yield section!"),
bullet("Cardiac assessment — history, ECG interpretation basics, cardiac enzymes"),
bullet("Heart failure — left vs right sided, NYHA classification, management"),
bullet("Coronary Artery Disease (CAD) — atherosclerosis, angina"),
bullet("Myocardial Infarction (MI) — STEMI vs NSTEMI, thrombolytics, nursing care"),
bullet("Cardiac arrhythmias — common ECG patterns, management"),
bullet("Valvular heart disease — mitral/aortic stenosis & regurgitation"),
bullet("Infective endocarditis — Duke's criteria, antibiotics"),
bullet("Pericarditis, myocarditis"),
bullet("Hypertension — JNC classification, anti-hypertensives, nursing care"),
bullet("Vascular disorders:"),
bullet("DVT — Homan's sign, anticoagulation", true),
bullet("Varicose veins, Buerger's disease, Raynaud's phenomenon", true),
bullet("Aneurysm — aortic, cerebral", true),
bullet("Hematological disorders:"),
bullet("Anemia types — iron deficiency, pernicious, aplastic, hemolytic", true),
bullet("Leukemia — ALL, AML, CLL, CML — nursing care", true),
bullet("Lymphoma — Hodgkin's vs Non-Hodgkin's", true),
bullet("Multiple myeloma", true),
bullet("Bleeding disorders: hemophilia, ITP, DIC", true),
bullet("Blood transfusion reactions — identification aur management", true),
spacer(100),
// ── Unit 7 ──
subSection("Unit 7: Communicable Diseases"),
bullet("Chain of infection — reservoir, portal of entry/exit, host"),
bullet("Standard precautions — hand hygiene, PPE"),
bullet("Transmission-based precautions: airborne, droplet, contact"),
bullet("Notifiable diseases in India"),
bullet("Cholera, typhoid, malaria, dengue — pathophysiology, nursing management"),
bullet("Tuberculosis (TB) — DOTS strategy, MDR-TB"),
bullet("Viral hepatitis — A, B, C, D, E — prevention, vaccination"),
bullet("Rabies — post-exposure prophylaxis"),
bullet("Leptospirosis, brucellosis"),
spacer(100),
// ── Unit 8 ──
subSection("Unit 8: Sexually Transmitted Diseases (STDs/STIs)"),
bullet("Types: gonorrhea, syphilis, chlamydia, herpes, HPV, HIV"),
bullet("Syphilis — primary, secondary, tertiary stages, VDRL test"),
bullet("Gonorrhea — symptoms, complications (PID), treatment"),
bullet("HIV/AIDS — transmission, window period, ART therapy, nursing care"),
bullet("Stigma reduction aur patient counseling"),
bullet("Prevention education — safe sex, condom use"),
spacer(100),
// ── Unit 9 ──
subSection("Unit 9: Musculoskeletal Disorders"),
bullet("Musculoskeletal assessment — ROM, muscle strength grading"),
bullet("Fractures — types, healing stages, complications"),
bullet("Immobilization — cast care, traction (skin vs skeletal)"),
bullet("Fracture complications: fat embolism, compartment syndrome"),
bullet("Osteoporosis — risk factors, prevention, bisphosphonates"),
bullet("Osteomalacia vs Rickets"),
bullet("Amputation — pre/post-op care, stump care, prosthesis, phantom limb pain"),
bullet("Joint replacement (arthroplasty) — hip, knee — post-op nursing"),
bullet("Osteomyelitis — acute vs chronic, antibiotic therapy"),
bullet("Spinal disorders — herniated disc, scoliosis, spinal stenosis"),
bullet("Orthopedic surgical procedures — ORIF, intramedullary nailing"),
spacer(100),
// ── Unit 10 ──
subSection("Unit 10: Emergency & Disaster Nursing"),
infoBox("Emergency nursing — practical knowledge aur fast decision-making dono zaruri hain!"),
bullet("Emergency nursing — triage principles (START triage)"),
bullet("Mass casualty incident (MCI) — disaster preparedness"),
bullet("Basic Life Support (BLS) — CPR technique, AED use"),
bullet("Advanced Cardiac Life Support (ACLS) overview"),
bullet("Poisoning management — activated charcoal, antidotes"),
bullet("Common poisonings:"),
bullet("Organophosphate poisoning — atropine antidote", true),
bullet("Paracetamol overdose — N-acetylcysteine", true),
bullet("Snake bite — antivenom, nursing care", true),
bullet("Drowning — near drowning management"),
bullet("Heat stroke vs heat exhaustion"),
bullet("Electric shock — safety, CPR"),
bullet("Anaphylaxis — epinephrine 0.3 mg IM, protocol"),
bullet("Trauma nursing — primary survey (ABCDE)"),
bullet("Disaster nursing — roles, triage tags, field hospital"),
spacer(400),
// ══════════════════════════════════════════════════════════════════════
// IMPORTANT TABLES
// ══════════════════════════════════════════════════════════════════════
new Paragraph({ children: [new PageBreak()] }),
...sectionHeader("HIGH-YIELD QUICK REFERENCE TABLES", "⚡"),
subSection("Key Antidotes — Emergency"),
new Table({
width: { size: 9000, type: WidthType.DXA },
rows: [
new TableRow({
tableHeader: true,
children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Poison / Overdose", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Antidote / Treatment", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] })
]
}),
twoColRow("Organophosphate", "Atropine + Pralidoxime (2-PAM)", true),
twoColRow("Opioids (morphine)", "Naloxone (Narcan)", false),
twoColRow("Benzodiazepines", "Flumazenil", true),
twoColRow("Paracetamol", "N-Acetylcysteine", false),
twoColRow("Heparin overdose", "Protamine Sulfate", true),
twoColRow("Warfarin overdose", "Vitamin K / FFP", false),
twoColRow("Digoxin toxicity", "Digoxin Immune Fab (Digibind)", true),
twoColRow("Iron overdose", "Deferoxamine", false),
twoColRow("Cyanide poisoning", "Hydroxocobalamin", true),
twoColRow("CO poisoning", "100% Oxygen", false)
]
}),
spacer(300),
subSection("Electrolyte Imbalances — Quick Reference"),
new Table({
width: { size: 9000, type: WidthType.DXA },
rows: [
new TableRow({
tableHeader: true,
children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Condition", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Key Symptoms", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Management", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] })
]
}),
new TableRow({ children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Hyponatremia (<135)", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Confusion, seizures, nausea", size: 19, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Fluid restriction, hypertonic saline (severe)", size: 19, font: "Calibri" })] })] })
]}),
new TableRow({ children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Hypernatremia (>145)", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Thirst, dry mucous membrane, agitation", size: 19, font: "Calibri" })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Oral/IV hypotonic fluids slowly", size: 19, font: "Calibri" })] })] })
]}),
new TableRow({ children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Hypokalemia (<3.5)", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Muscle weakness, arrhythmia, U-wave on ECG", size: 19, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "KCl supplement (never IV push!)", size: 19, font: "Calibri" })] })] })
]}),
new TableRow({ children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Hyperkalemia (>5.0)", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Peaked T-wave, cardiac arrest risk", size: 19, font: "Calibri" })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Calcium gluconate (cardiac protection), Kayexalate", size: 19, font: "Calibri" })] })] })
]})
]
}),
spacer(300),
subSection("Shock Types — Rapid Reference"),
new Table({
width: { size: 9000, type: WidthType.DXA },
rows: [
new TableRow({
tableHeader: true,
children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Type", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Cause", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: TEAL }, children: [new Paragraph({ children: [new TextRun({ text: "Key Nursing Action", bold: true, color: WHITE, size: 20, font: "Calibri" })] })] })
]
}),
new TableRow({ children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Hypovolemic", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Bleeding, dehydration, burns", size: 19, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "IV fluids, blood products, stop bleeding", size: 19, font: "Calibri" })] })] })
]}),
new TableRow({ children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Cardiogenic", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "MI, heart failure, arrhythmia", size: 19, font: "Calibri" })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Dobutamine, IABP, oxygen", size: 19, font: "Calibri" })] })] })
]}),
new TableRow({ children: [
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Distributive (Septic)", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Sepsis, anaphylaxis, neurogenic", size: 19, font: "Calibri" })] })] }),
new TableCell({ shading: { type: ShadingType.CLEAR, fill: SECTION_BG }, children: [new Paragraph({ children: [new TextRun({ text: "Antibiotics, vasopressors, fluids", size: 19, font: "Calibri" })] })] })
]}),
new TableRow({ children: [
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Obstructive", bold: true, size: 19, font: "Calibri", color: TEAL })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "PE, cardiac tamponade, tension pneumothorax", size: 19, font: "Calibri" })] })] }),
new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Remove obstruction — needle decompression, pericardiocentesis", size: 19, font: "Calibri" })] })] })
]})
]
}),
spacer(400),
// ══════════════════════════════════════════════════════════════════════
// EXAM TIPS
// ══════════════════════════════════════════════════════════════════════
new Paragraph({ children: [new PageBreak()] }),
...sectionHeader("EXAM PREPARATION TIPS", "🎯"),
subSection("High-Yield Topics — Har Exam Mein Aate Hain"),
bullet("Fluid & Electrolytes — numbers yaad karo (Na: 135-145, K: 3.5-5.0, Ca: 8.5-10.5)"),
bullet("Shock management — types aur nursing interventions"),
bullet("Burns — Rule of Nines aur Parkland formula"),
bullet("Diabetes — insulin types aur action time"),
bullet("Post-operative complications — prevention aur early detection"),
bullet("Antidotes — organophosphate, opioids, warfarin"),
bullet("Glasgow Coma Scale — scoring (E4 V5 M6 = normal = 15)"),
bullet("Triage — START method (RPM: Respiration, Pulse, Mental status)"),
spacer(100),
subSection("Study Strategy"),
bullet("Pehle pathophysiology samjho — ratta lagane se better hai"),
bullet("Har disease ke liye: Definition → Causes → Signs/Symptoms → Diagnosis → Treatment → Nursing Care"),
bullet("Previous year papers zaroor solve karo"),
bullet("Mnemonics banao — e.g., ARDS: 'A Respiratory Distress Syndrome' — Berlin criteria"),
bullet("Clinical posting ke notes review karo — practical examples yaad rehte hain"),
bullet("Group study mein case scenarios discuss karo"),
spacer(100),
infoBox("Best of luck for your Medical Surgical Nursing exam! Mehnat karo, concepts clear karo — success zaroor milegi. 🌟"),
spacer(200),
new Paragraph({
alignment: AlignmentType.CENTER,
children: [
new TextRun({ text: "━━━━━━━━━━ End of Study Guide ━━━━━━━━━━", color: TEAL, size: 20, font: "Calibri", italics: true })
]
})
]
}]
});
Packer.toBuffer(doc).then(buffer => {
fs.writeFileSync('/home/daytona/workspace/med-surg-nursing/Medical_Surgical_Nursing_Study_Guide.docx', buffer);
console.log("Document created successfully!");
}).catch(err => {
console.error("Error:", err);
process.exit(1);
});
cd /home/daytona/workspace/med-surg-nursing && node create_doc.js
python3 /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/med-surg-nursing/Medical_Surgical_Nursing_Study_Guide.docx
ls -lh /home/daytona/workspace/med-surg-nursing/ && python3 -c "import zipfile; z = zipfile.ZipFile('/home/daytona/workspace/med-surg-nursing/Medical_Surgical_Nursing_Study_Guide.docx'); print('Valid ZIP/DOCX - Files:', z.namelist()[:5])"
Medical Surgical Nursing Study Guide
Word Document · DOCX