File size: 91,438 Bytes
84db31f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 | [
{
"listingId": "3150094",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-web-development-internship-at-zdminds1778824887",
"title": "Web Development",
"company": "Zdminds",
"companyUrl": "https://www.linkedin.com/company/zdmindsindia/?viewAsMember=true",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 10,000 - 20,000 /month",
"stipendMin": 10000,
"stipendMax": 20000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 4,
"applicants": null,
"skills": [
"Bootstrap",
"CSS",
"HTML",
"JavaScript",
"jQuery",
"MySQL",
"Node.js",
"PHP",
"React",
"WordPress"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "We are looking for a motivated Web Development intern to join our team at Zdminds! If you have experience with PHP, MySQL, HTML, CSS, JavaScript, jQuery, WordPress, Bootstrap, Node.js, and React, this is the perfect opportunity for you to gain hands-on experience and expand your skills in a fast-paced environment. Selected intern's day-to-day responsibilities include: 1. Collaborate with the development team to create and maintain websites and applications. 2. Write clean, efficient, and maintainable code using best practices. 3. Assist in troubleshooting and resolving technical issues. 4. Implement and customize plugins and themes for WordPress sites. 5. Optimize websites for speed and performance. 6. Stay updated on the latest web development trends and technologies. 7. Contribute ideas and solutions to improve the overall user experience. If you are passionate about web development and eager to learn, apply now to be part of our dynamic team at Zdminds!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:48.804Z"
},
{
"listingId": "3150096",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-python-development-internship-at-zdminds1778824954",
"title": "Python Development",
"company": "Zdminds",
"companyUrl": "https://www.linkedin.com/company/zdmindsindia/?viewAsMember=true",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 10,000 - 20,000 /month",
"stipendMin": 10000,
"stipendMax": 20000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 3,
"applicants": null,
"skills": [
"CSS",
"Django",
"Flask",
"HTML",
"Machine Learning",
"Python",
"REST API"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "Are you a talented Python Development intern looking for an exciting opportunity to work with cutting-edge technologies? Look no further than Zdminds! We are seeking a motivated individual who is proficient in HTML, CSS, Python, Django, machine learning, REST API, and Flask to join our dynamic team. Selected intern's day-to-day responsibilites include: 1. Collaborate with the development team to design and implement backend solutions using Python and Django. 2. Utilize Machine Learning algorithms to enhance our products and services. 3. Develop and maintain REST APIs to improve data communication and integration. 4. Build efficient and scalable web applications using Flask framework. 5. Participate in code reviews and provide constructive feedback to peers. 6. Stay updated on the latest industry trends and technologies to continuously improve our products. 7. Contribute to the overall success of the team by actively participating in team meetings and brainstorming sessions. If you are passionate about technology and eager to gain hands-on experience in a fast-paced environment, apply now to be part of our innovative team at Zdminds!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:48.840Z"
},
{
"listingId": "3150201",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-machine-learning-python-internship-at-switchyourvendor1778830112",
"title": "Machine Learning - Python",
"company": "SwitchYourVendor",
"companyUrl": "http://www.switchyourvendor.com",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 20,000 - 35,000 /month",
"stipendMin": 20000,
"stipendMax": 35000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 4,
"applicants": null,
"skills": [
"Python"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week",
"Job offer"
],
"description": "As a Machine Learning - Internship - Python intern at SwitchYourVendor, you will have the exciting opportunity to work with cutting-edge technology and help develop innovative solutions for our platform. We are seeking a talented individual who is proficient in Python and eager to learn and grow in the field of machine learning. Selected intern's day-to-day responsibilities include: 1. Collaborate with our team of data scientists and engineers to develop and implement machine learning algorithms. 2. Assist in collecting, cleaning, and analyzing large datasets to build predictive models. 3. Work on various projects related to natural language processing, image recognition, and recommendation systems. 4. Conduct research and stay up-to-date on the latest developments in the field of machine learning. 5. Participate in code reviews and provide feedback to help improve the quality of our software. 6. Contribute to the development of new features and enhancements for our platform. 7. Gain hands-on experience working in a fast-paced startup environment and make a real impact on our product. If you are passionate about machine learning and looking for a challenging and rewarding internship experience, then we want to hear from you! Join us at SwitchYourVendor and help shape the future of our platform with your Python skills and enthusiasm for innovation.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:49.552Z"
},
{
"listingId": "3149572",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-part-time-web-development-internship-at-emoolar-technology-private-limited1778819075",
"title": "Web Development",
"company": "Emoolar Technology Private Limited",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 1,000 - 2,000 /month",
"stipendMin": 1000,
"stipendMax": 2000,
"duration": "1 Month",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "Are you a talented and passionate web developer looking to gain hands-on experience in a dynamic tech company? Emoolar Technology Private Limited is seeking a motivated Web Development intern to join our team! Selected intern's day-to-day responsibilities include: 1. Assist in the design and development of responsive websites using HTML, CSS, and JavaScript. 2. Collaborate with the team to implement new features and functionalities on existing websites. 3. Perform website maintenance and updates to ensure optimal performance. 4. Conduct thorough testing to identify and resolve any bugs or issues. 5. Stay updated on industry trends and best practices to enhance the quality of our websites. 6. Support the team in various projects and initiatives as needed. 7. Contribute creative ideas and innovative solutions to drive the company's web development efforts forward. If you are a self-starter with a strong foundation in web development technologies, we want to hear from you! Apply now and take your skills to the next level at Emoolar Technology Private Limited.",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:50.562Z"
},
{
"listingId": "3150091",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-java-development-internship-at-zdminds1778824741",
"title": "Java Development",
"company": "Zdminds",
"companyUrl": "https://www.linkedin.com/company/zdmindsindia/?viewAsMember=true",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 10,000 - 18,000 /month",
"stipendMin": 10000,
"stipendMax": 18000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 3,
"applicants": null,
"skills": [
"Hibernate ORM(Java)",
"J2EE",
"Java",
"JSP",
"MySQL",
"Spring MVC"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "We are looking for a passionate Java Development intern to join our dynamic team at Zdminds. If you have a solid understanding of Java, MySQL, JSP, J2EE, Hibernate ORM, and Spring MVC, this is the perfect opportunity for you to gain hands-on experience and enhance your skills in a real-world setting. Key Responsibilities: 1. Collaborate with the development team to design, develop, and implement Java-based applications. 2. Write efficient, maintainable, and reusable code that meets our company's standards. 3. Work on database design, query optimization, and data manipulation using MySQL. 4. Assist in integrating front-end elements with server-side logic using JSP and Spring MVC. 5. Utilize Hibernate ORM to interact with databases and manage object-relational mappings. 6. Troubleshoot and debug issues to ensure the functionality and performance of applications. 7. Stay updated with the latest technologies and trends in Java development to contribute innovative ideas to our projects. If you are eager to learn, have a can-do attitude, and are ready to take on exciting challenges, apply now to kickstart your career in Java development with Zdminds!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:50.644Z"
},
{
"listingId": "3149571",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-part-time-full-stack-development-internship-at-emoolar-technology-private-limited1778819052",
"title": "Full Stack Development",
"company": "Emoolar Technology Private Limited",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 2,000 - 3,000 /month",
"stipendMin": 2000,
"stipendMax": 3000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 8,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "Are you a passionate and talented Full Stack Development intern looking to gain hands-on experience in a fast-paced tech environment? Emoolar Technology Private Limited is seeking a dynamic individual who is proficient in HTML, CSS, and JavaScript to join our team. Selected intern's day-to-day responsibilities include: 1. Collaborate with our development team to design and implement innovative web applications. 2. Write clean, efficient, and maintainable code for both front-end and back-end development. 3. Conduct thorough testing to identify and fix bugs in the code. 4. Assist in the optimization of applications for maximum speed and scalability. 5. Stay updated on the latest trends and technologies in web development. 6. Contribute to brainstorming sessions and offer creative solutions to technical challenges. 7. Work closely with designers and other team members to ensure a seamless user experience. If you are eager to expand your skill set and make a significant impact on cutting-edge projects, apply now to be a part of our dynamic team at Emoolar Technology Private Limited!",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:51.371Z"
},
{
"listingId": "3149489",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/front-end-development-internship-in-chennai-at-meteoros-automation1778764975",
"title": "Front End Development",
"company": "Meteoros Automation",
"companyUrl": null,
"location": "Chennai",
"isRemote": false,
"stipend": "₹ 4,000 - 5,000 /month",
"stipendMin": 4000,
"stipendMax": 5000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"CSS",
"HTML",
"Internet of Things (IoT)",
"JavaScript",
"React",
"REST API",
"Tailwind CSS",
"Three.js"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Design & develop slick, user-friendly UIs that work beautifully across devices. 2. Hook up real-time APIs, WebSockets, and gRPC services to bring IoT dashboards, devices, and live data to life. 3. Build dynamic visualizations (think real-time graphs, alerts, device status, etc.) 4. Collaborate with designers & backend developers to bring seamless, intuitive UX to users. 5. Optimize performance for live IoT data streams & massive datasets. 6. Ensure mobile-first & cross-browser compatibility so things \"just work\" everywhere. 7. Write clean, testable code and contribute to our reusable UI component library. 8. Participate in code reviews and level up your frontend engineering skills.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Today",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:51.736Z"
},
{
"listingId": "3149431",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-web-development-internship-at-queens-of-change-foundation1778761631",
"title": "Web Development",
"company": "Queens Of Change Foundation",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "Unpaid",
"stipendMin": null,
"stipendMax": null,
"duration": "1 Month",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"HTML"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours"
],
"description": "Are you a web development enthusiast looking to gain hands-on experience in the field? Queens Of Change Foundation is seeking a dynamic and motivated individual to join our team as a Web Development intern. If you have a strong understanding of HTML and are eager to learn and grow in a fast-paced environment, this opportunity is perfect for you! Key Responsibilities: 1. Assist in the creation and maintenance of the company's website using HTML. 2. Collaborate with the design team to implement new features and enhancements. 3. Conduct website testing and troubleshooting to ensure optimal functionality. 4. Optimize website performance and loading speeds for a seamless user experience. 5. Stay up-to-date on the latest web development trends and technologies. 6. Provide support for content updates and site maintenance as needed. 7. Contribute creative ideas to enhance the overall look and feel of the website. If you are a self-starter with a passion for web development and a desire to make a positive impact, we want to hear from you! Apply now and be a part of our mission to empower and uplift women through technology.",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "Today",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:51.804Z"
},
{
"listingId": "3147353",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-part-time-digital-marketing-social-media-internship-at-stand-n-stride-foundation1778761093",
"title": "Digital Marketing & Social Media",
"company": "STAND N STRIDE FOUNDATION",
"companyUrl": "http://standnstride.org",
"location": "Work from home",
"isRemote": true,
"stipend": "Unpaid",
"stipendMin": null,
"stipendMax": null,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 100,
"applicants": null,
"skills": [
"CMS (Content Management System)",
"Computer skills",
"Content Writing",
"Creative Writing",
"Digital Design",
"Effective Communication",
"Graphic Design",
"WordPress"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "Are you a creative and tech-savvy individual looking to gain experience in digital marketing and social media? Look no further! Join our team at Stand N Stride Foundation as a Digital Marketing and Social Media Intern. Selected intern's day-to-day responsibilities include: 1. Assist in managing and updating our WordPress website 2. Create engaging content for our social media platforms 3. Utilize CMS for content management and optimization 4. Develop digital designs and graphics for marketing materials 5. Enhance our online presence through effective communication strategies 6. Use your creative writing skills to craft compelling stories and posts 7. Collaborate with the team to brainstorm and execute innovative marketing campaigns 8. Web development 9. AI tool knowledge If you have a passion for making a difference and want hands-on experience in the world of digital marketing, apply now to be part of our dynamic team!",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "Today",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:52.666Z"
},
{
"listingId": "3149261",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/part-time-data-mining-data-entry-internship-in-multiple-locations-at-code-vyasa1778752910",
"title": "Data Mining & Data Entry",
"company": "Code Vyasa",
"companyUrl": "http://codevyasa.com",
"location": "Delhi, Ghaziabad, Gurgaon, Gautam Buddha Nagar, Noida",
"isRemote": false,
"stipend": "₹ 6,000 - 10,000 /month",
"stipendMin": 6000,
"stipendMax": 10000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Copywriting",
"Data entry",
"English Proficiency (Spoken)",
"English Proficiency (Written)",
"Google Sheets",
"MS-Excel",
"MS-Office",
"Typing"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Conducting market research and utilizing tools likes sales navigator and Apollo for data extraction. 2. Assisting in improving the data extraction process for better efficiency. 3. Handling day-to-day operational tasks to ensure smooth workflow. 4. Coordinating with the team to facilitate communication and project execution.",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "Today",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:53.258Z"
},
{
"listingId": "3149288",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-ai-web-development-internship-at-inamigos-foundation1778753865",
"title": "AI Web Development",
"company": "InAmigos Foundation",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 4,000 - 6,500 /month",
"stipendMin": 4000,
"stipendMax": 6500,
"duration": "2 Weeks",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 165,
"applicants": null,
"skills": [
"English Proficiency (Spoken)",
"English Proficiency (Written)",
"Web development"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Build and maintain your personal portfolio/profile showcasing projects and skills. 2. Work on improving the foundation's website (UI, features, performance, updates). 3. Conduct research on web/AI tools and suggest practical implementations. 4. Support basic development tasks and assist in technical problem-solving. 5. Contribute to outreach efforts including ideas for engagement and donation support. 6. Raise funds for the betterment of society. Note: For the stipend, interns have to raise donations.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:54.064Z"
},
{
"listingId": "3149232",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-python-developer-serverless-internship-at-across-the-globe-atg1778750879",
"title": "Python Developer (Serverless)",
"company": "Across The Globe (ATG)",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 2,500 - 8,000 /month",
"stipendMin": 2500,
"stipendMax": 8000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"Django",
"MS SQL Server",
"Python"
],
"perks": [
"Certificate",
"Flexible work hours"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Collaborate with the development team to design and implement serverless applications using Python 2. Optimize code for performance and scalability in serverless environments 3. Integrate third-party services and APIs to enhance functionality 4. Conduct code reviews and provide constructive feedback to team members 5. Troubleshoot and debug applications to ensure they meet quality standards 6. Stay up-to-date on the latest trends and best practices in serverless architecture 7. Assist in deploying and maintaining serverless applications in cloud environments Don't miss this opportunity to kickstart your career in serverless development with ATG. Apply now and be a part of our dynamic team!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:54.958Z"
},
{
"listingId": "3128059",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/backend-development-internship-in-multiple-locations-at-empoweru-promorph-solutions-private-limited1778665403",
"title": "Backend Development",
"company": "EmpowerU (Promorph Solutions Private Limited)",
"companyUrl": "http://www.empoweru.in",
"location": "Bokaro Steel City, Dhanbad, Jamshedpur, Ranchi, Jharkhand, Ramgarh",
"isRemote": false,
"stipend": "₹ 3,000 - 5,000 /month",
"stipendMin": 3000,
"stipendMax": 5000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "12 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Cloud Firestore",
"Express.js",
"Git",
"MongoDB",
"Node.js",
"Python",
"REST API"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Job offer"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Developing applications using Node.js and integrating AI/Machine learning algorithms. 2. Understand project requirements, user interface designs, and user experience goals. 3. Integrate with RESTful APIs, Firebase for backend web services, third-party libraries, and ad services to fetch and display data within the app.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:55.359Z"
},
{
"listingId": "3149152",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/product-engineer-internship-in-multiple-locations-at-tsteps-private-limited1778749195",
"title": "Product Engineer",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Chennai, Hyderabad",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"APIs",
"CSS",
"HTML",
"React"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Attending sprint planning/standups with engineers and product managers 2. Translating product requirements into technical tasks 3. Asking clarifying questions about user needs and edge cases 4. Reviewing acceptance criteria before implementation",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:56.761Z"
},
{
"listingId": "3149080",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/full-stack-development-internship-in-multiple-locations-at-web3task1778743339",
"title": "Full Stack Development",
"company": "Web3Task",
"companyUrl": "http://web3task.in",
"location": "Delhi, Ghaziabad, Greater Noida, Gautam Buddha Nagar, Noida",
"isRemote": false,
"stipend": "₹ 5,500 - 11,000 /month",
"stipendMin": 5500,
"stipendMax": 11000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 10,
"applicants": null,
"skills": [
"C++ Programming",
"CSS",
"Express.js",
"Java",
"JavaScript",
"MongoDB",
"MySQL",
"Node.js",
"React",
"React Native"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code"
],
"description": "Key Responsibilities 1. Feature Development:- Assist in implementing and optimizing complex features across frontend and backend systems. 2. Architecture & System Design:- Collaborate with the Tech Lead to design scalable and efficient technical solutions. 3. Code Quality & Reviews:- Write clean, maintainable code and participate in code reviews to maintain high development standards. 4. DevOps & Deployment:- Support CI/CD pipelines to ensure applications are tested, built, and deployed smoothly. 5. API Development & Integration:- Help design and integrate APIs that enable seamless communication between frontend and backend systems. Work with third-party service integrations when required. 6. Security Implementation:- Follow secure development practices including authentication and authorization mechanisms such as OAuth and JWT. 7. Cross-Team Collaboration:- Work with product managers, designers, and other developers to deliver high-quality solutions. 8. Agile Development Support:- Participate in backlog grooming, story breakdown, estimation, and sprint planning.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:58.158Z"
},
{
"listingId": "3150175",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-full-stack-development-internship-at-explorogent-international-services-private-limited1778828761",
"title": "Full Stack Development",
"company": "Explorogent International Services Private Limited",
"companyUrl": "https://www.stackkaroo.com/",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 5,000 /month",
"stipendMin": 5000,
"stipendMax": 5000,
"duration": "5 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"AngularJS",
"CSS",
"Express.js",
"HTML",
"JavaScript",
"MongoDB",
"MySQL",
"NestJS",
"Next.js",
"Node.js",
"Python",
"React",
"TypeScript"
],
"perks": [
"Certificate",
"Letter of recommendation"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Developing and implementing highly responsive user interface components using React/Next concepts 2. Writing application interface codes using JavaScript following React/Next workflows 3. Troubleshooting interface software and debugging application codes 4. Developing and implementing front-end architecture to support user interface concepts 5. Monitoring and improving front-end performance 6. Documenting application changes and developing updates",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Just now",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:58.365Z"
},
{
"listingId": "3149052",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/web-development-internship-in-chennai-at-almi-blogging-school-pro-almi-production-land-solar-private-limited1778741839",
"title": "Web Development",
"company": "ALMI Blogging School Pro (Almi Production Land Solar Private Limited)",
"companyUrl": null,
"location": "Chennai",
"isRemote": false,
"stipend": "₹ 3,000 - 6,000 /month",
"stipendMin": 3000,
"stipendMax": 6000,
"duration": "2 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 10,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript",
"PHP"
],
"perks": [
"Certificate"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Learn and practice website development for 2 hours daily using WordPress, HTML, and CSS. 2. Preparing daily work reports and collaborating with the team for project improvements. 3. Working on real-time live projects and assisting in website updates, design, and maintenance. 4. Supporting the digital sales and marketing team by optimizing website content for lead generation.",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:03:58.864Z"
},
{
"listingId": "3150210",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/web-development-internship-in-guwahati-at-lucidbox-technologies1778830383",
"title": "Web Development",
"company": "Lucidbox Technologies",
"companyUrl": "https://lucidbox.in",
"location": "Guwahati",
"isRemote": false,
"stipend": "₹ 6,000 /month",
"stipendMin": 6000,
"stipendMax": 6000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 1,
"applicants": null,
"skills": [
"Adobe Photoshop",
"CSS",
"Shopify",
"WordPress"
],
"perks": [
"Certificate",
"Informal dress code",
"5 days a week"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Assist in Shopify store development and updates 2. Build and customize WordPress websites 3. Work on website styling using HTML, CSS and liquid.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Just now",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:00.463Z"
},
{
"listingId": "3149073",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/software-development-internship-in-multiple-locations-at-idolize-business-solutions1778821470",
"title": "Software Development",
"company": "Idolize Business Solutions",
"companyUrl": "http://idolizesolutions.com",
"location": "Thane, Mumbai",
"isRemote": false,
"stipend": "₹ 8,000 - 10,000 /month",
"stipendMin": 8000,
"stipendMax": 10000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"MySQL",
"Python"
],
"perks": [
"Certificate",
"Job offer"
],
"description": "We are a technology-driven organization focused on building advanced HyperAutomation and AI-powered automation solutions. Our work combines automation platforms, workflow optimization, and emerging Agentic AI technologies to create intelligent business processes and scalable digital solutions. The organization provides structured learning, hands-on technical exposure, and career growth opportunities for individuals interested in automation, AI-driven workflows, and next-generation technology implementations. Selected intern's day-to-day responsibilities include: 1. Monitor automation bots and workflows to ensure smooth operational performance. 2. Identify basic issues and support troubleshooting activities within automation processes. 3. Understand business workflows and automation process structures. 4. Analyze existing bot logic and workflows to support debugging and enhancement activities. 5. Assist with minor code fixes and support development using Python scripts and databases. 6. Develop automation workflows and support end-to-end bot development processes. 7. Work with HyperAutomation tools, integrations, and deployment activities. 8. Support enhancement and optimization initiatives for automation workflows. 9. Collaborate on Agentic AI implementations using LangChain and LangGraph technologies. 10. Contribute to building AI-driven automation solutions and workflow systems.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:00.962Z"
},
{
"listingId": "3149021",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/technical-associate-internship-in-multiple-locations-at-tsteps-private-limited1778741087",
"title": "Technical Associate",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Delhi, Hyderabad",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Java",
"Python",
"TypeScript"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Assisting in troubleshooting and resolving basic technical issues reported by users or internal teams 2. Providing support for software, systems, or applications under supervision 3. Writing and maintaining simple scripts using Python, SQL, or basic shell scripting 4. Supporting database-related tasks such as querying, updating, and validating data",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:01.360Z"
},
{
"listingId": "3143474",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/wordpress-development-internship-in-jaipur-at-viralchilly1778244741",
"title": "WordPress Development",
"company": "ViralChilly",
"companyUrl": "https://www.facebook.com/viralchilly/",
"location": "Jaipur",
"isRemote": false,
"stipend": "₹ 3,000 - 5,000 /month",
"stipendMin": 3000,
"stipendMax": 5000,
"duration": "4 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "7 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"CSS",
"HTML",
"WordPress"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Informal dress code",
"5 days a week",
"Job offer"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Develop and customize WordPress websites, themes, and plugins. 2. Implement responsive designs optimized for desktop and mobile devices. 3. Optimize website performance, speed, and SEO. 4. Collaborate with designers, marketers, and account teams to execute website requirements. 5. Troubleshoot technical issues and resolve bugs efficiently. 6. Maintain and update existing client websites. 7. Integrate plugins, tools, and third-party services as required. 8. Suggest improvements to enhance website functionality, design, and user experience. 9. Support live client projects in a fast-moving digital agency environment.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:02.769Z"
},
{
"listingId": "3149016",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/systems-engineer-internship-in-multiple-locations-at-tsteps-private-limited1778740799",
"title": "Systems Engineer",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Mumbai, Gurugaon",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Google Cloud Platforms (GCP)",
"Powershell",
"Python"
],
"perks": [],
"description": "Selected intern's day-to-day responsibilities include: 1. Assisting in monitoring and maintaining IT systems, servers, and infrastructure 2. Supporting system setup, configuration, and troubleshooting tasks 3. Working with operating systems like Linux and Windows Server for basic administration tasks 4. Writing scripts for automation using tools like Python, Bash, or PowerShell",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:04.458Z"
},
{
"listingId": "3150421",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/full-stack-development-internship-in-ahmedabad-at-freelance-trainings1778834541",
"title": "Full Stack Development",
"company": "Freelance Trainings",
"companyUrl": "http://freelancetrainings.com",
"location": "Ahmedabad",
"isRemote": false,
"stipend": "₹ 2,000 - 2,100 /month",
"stipendMin": 2000,
"stipendMax": 2100,
"duration": "4 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 4,
"applicants": null,
"skills": [
"Django",
"Django Rest Framework",
"Python"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Informal dress code"
],
"description": "Selected intern's day-to-day responsibilities include: 1.Backend Development: Build and maintain scalable APIs using Django and DRF. 2 Database Management: Design and optimize database schemas in PostgreSQL. 3 Frontend Integration: Work on the frontend to ensure a seamless user experience for trainers and clients. 4 Optimization: Implement the service layer pattern to keep business logic clean and maintainable. 5 Deployment: Assist in managing application deployment on a VPS using Gunicorn and Nginx. What You Will Learn 1) Professional software architecture (Service Layer & Schema patterns). 2) End-to-end deployment workflows on live production servers. 3) How to handle bulk data modifications and production database management. 4) Building AI-driven orchestration layers (for future project phases).",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Just now",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:06.163Z"
},
{
"listingId": "3149005",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/nodejs-development-internship-in-multiple-locations-at-tsteps-private-limited1778739911",
"title": "Node.js Development",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Chennai, Hyderabad",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Express.js",
"HTML",
"JavaScript",
"MongoDB",
"MySQL",
"Node.js",
"React",
"REST API"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: Assisting in building and maintaining backend services using Node.js Writing server-side code using JavaScript Developing and testing REST APIs for web or mobile applications Working with backend frameworks like Express.js",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:06.857Z"
},
{
"listingId": "3148990",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/react-developer-internship-in-multiple-locations-at-tsteps-private-limited1778739605",
"title": "React Developer",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Pune, Noida",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"APIs",
"Next.js",
"TypeScript"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Building and maintaining React components 2. Implementing UI designs from Figma or design mockups 3. Managing component state using React Hooks such as useState and useEffect 4. Integrating frontend applications with REST APIs",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:08.361Z"
},
{
"listingId": "3146843",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/seo-executive-internship-in-mumbai-at-ace-3601778581231",
"title": "SEO Executive",
"company": "Ace 360",
"companyUrl": "http://www.ace360degree.com",
"location": "Mumbai",
"isRemote": false,
"stipend": "₹ 5,000 - 15,000 /month",
"stipendMin": 5000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "11 Jun' 26",
"openings": 12,
"applicants": null,
"skills": [
"CMS (Content Management System)",
"Digital Marketing",
"Google AdWords",
"Google Analytics",
"MS-Excel",
"Search Engine Optimization (SEO)",
"Technical Analysis"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Informal dress code"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Perform keyword research and optimize website content for better search rankings 2. Work on on-page SEO activities like meta titles, descriptions, headings, and URLs 3. Monitor website performance using Google Analytics and other SEO tools 4. Assist in technical SEO including indexing, site audits, and website optimization 5. Analyze competitors and suggest SEO improvement strategies 6. Support digital marketing campaigns and content optimization 7. Update website content through CMS platforms like WordPress 8. Prepare SEO performance reports using MS Excel",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:10.473Z"
},
{
"listingId": "3148208",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/software-development-internship-in-hyderabad-at-koundinyasa-technology-services-private-limited1778739084",
"title": "Software Development",
"company": "Koundinyasa Technology Services Private Limited",
"companyUrl": "https://www.linkedin.com/company/koundinyasa-technology",
"location": "Hyderabad",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 4,
"applicants": null,
"skills": [
"C++ Programming",
"Java",
"React"
],
"perks": [
"Certificate",
"Letter of recommendation",
"5 days a week"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Assist the development team in day-to-day software tasks 2. Learn basic backend development concepts and workflows 3. Work on simple coding tasks assigned by mentors 4. Support in testing and debugging applications 5. Update and maintain project-related data and files 6. Learn how APIs and databases work in real-time projects 7. Participate in team meetings and training sessions 8. Understand software development processes and tools 9. Help the team in basic documentation and reporting tasks 10. Complete assigned tasks within timelines 11. Learn new technologies and improve technical skills through practical exposure 12. Collaborate with team members on ongoing projects",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:12.365Z"
},
{
"listingId": "3150488",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-mern-stack-development-internship-at-across-the-globe-atg1778835730",
"title": "MERN Stack Development",
"company": "Across The Globe (ATG)",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 2,500 - 8,000 /month",
"stipendMin": 2500,
"stipendMax": 8000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"CSS",
"Database Management System (DBMS)",
"Express.js",
"HTML",
"JavaScript",
"MongoDB",
"Node.js",
"React",
"SQL"
],
"perks": [
"Certificate",
"Flexible work hours"
],
"description": "As a MERN stack developer intern at Across The Globe (ATG), you will have the opportunity to work on cutting-edge projects and gain valuable hands-on experience in React, Node.js, MongoDB, Express.js, CSS, HTML, JavaScript, database management systems (DBMS), and SQL. Selected intern's day-to-day responsibilities include: 1. Collaborate with the development team to design and develop innovative web applications using the MERN stack. 2. Assist in troubleshooting and debugging issues to ensure seamless functionality and user experience. 3. Participate in code reviews and provide feedback to improve code quality and efficiency. 4. Work on database management tasks, including data modeling, querying, and optimization. 5. Implement responsive design principles to create visually appealing and user-friendly interfaces. 6. Research and implement best practices in web development to stay current with industry trends. 7. Contribute to the overall success of projects by meeting deadlines and exceeding expectations. Join us at ATG as we revolutionize the digital landscape and make a lasting impact on global industries. Apply now and take the first step towards a rewarding career in web development!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Just now",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:12.858Z"
},
{
"listingId": "3150124",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/shopify-wordpress-developer-internship-in-faridabad-at-roi-10x1778826688",
"title": "Shopify & WordPress Developer",
"company": "ROI 10X",
"companyUrl": "http://roi10x.com",
"location": "Faridabad",
"isRemote": false,
"stipend": "₹ 5,000 - 10,000 /month",
"stipendMin": 5000,
"stipendMax": 10000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript",
"Shopify",
"WordPress"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"Free snacks & beverages",
"Job offer"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Develop and maintain Shopify and WordPress websites 2. Customize Shopify themes and WordPress templates 3. Build landing pages for marketing campaigns 4. Improve website speed and responsiveness 5. Install and configure plugins/apps 6. Work on bug fixing and website maintenance 7. Coordinate with the design and marketing team 8. Optimize websites for SEO basics and conversions",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:13.462Z"
},
{
"listingId": "3148949",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/full-stack-development-internship-in-multiple-locations-at-tsteps-private-limited1778736915",
"title": "Full Stack Development",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Chennai, Bangalore",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"AngularJS",
"CSS",
"HTML",
"JavaScript",
"MongoDB",
"MySQL",
"Node.js",
"Python"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: Working with databases like MySQL, PostgreSQL, or MongoDB Integrating frontend interfaces with backend APIs Debugging and fixing issues across the full application stack Testing applications for functionality, responsiveness, and performance Using version control tools such as Git",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:14.164Z"
},
{
"listingId": "3148944",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/front-end-development-internship-in-multiple-locations-at-tsteps-private-limited1778736713",
"title": "Front End Development",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Delhi, Bangalore",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Bootstrap",
"CSS",
"HTML",
"JavaScript",
"jQuery",
"Node.js",
"React",
"REST API"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: Converting design mockups into functional web pages Ensuring websites are responsive across mobile, tablet, and desktop devices Fixing UI bugs and improving website performance Collaborating with backend developers and designers Integrating frontend applications with APIs",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:16.164Z"
},
{
"listingId": "3149456",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-powerapps-internship-at-akshay-paranjape1778818119",
"title": "PowerApps",
"company": "Akshay Paranjape",
"companyUrl": "https://www.linkedin.com/in/akshayparanjape2/",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 3,000 - 5,000 /month",
"stipendMin": 3000,
"stipendMax": 5000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 1,
"applicants": null,
"skills": [
"Microsoft 365",
"Microsoft PowerApps"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Job offer"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Learn and understand the end-to-end lifecycle of PowerApps development 2. Work with Power Automate to create automated workflows 3. Assist in integrating Microsoft 365 tools (SharePoint, Teams, Outlook, Dataverse) 4. Collaborate with internal teams to identify automation opportunities 5. Support troubleshooting and enhancement of existing apps 6. Document processes, workflows, and solutions",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:17.660Z"
},
{
"listingId": "3150062",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/web-development-internship-in-delhi-at-watrana-traction-private-limited1778823655",
"title": "Web Development",
"company": "Watrana Traction Private Limited",
"companyUrl": "https://www.watrana.com/",
"location": "Delhi",
"isRemote": false,
"stipend": "₹ 8,000 /month",
"stipendMin": 8000,
"stipendMax": 8000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "14 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
".NET",
"Angular 7.0",
"ASP.NET",
"C#",
"C#.NET",
"Model View Controller(MVC)",
"SQL"
],
"perks": [
"Certificate",
"Letter of recommendation"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Only Work from office. NO Work from home or remote allowed. 2. Only serious candidate with good learning skills apply for this post 3. Developing web applications using Angular, C#, ASP.NET, .NET, TypeScript. 4. Working with web debugging tools (Firebug or Chrome Developer Console) 5. Working on Angular (JavaScript frameworks) to create rich interactive content",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Few hours ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:19.063Z"
},
{
"listingId": "3148935",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/backend-engineer-internship-in-multiple-locations-at-tsteps-private-limited1778736672",
"title": "Backend Engineer",
"company": "TSTEPS PRIVATE LIMITED",
"companyUrl": null,
"location": "Pune, Mumbai",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Java",
"JavaScript",
"PHP",
"Python"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Assisting in developing and maintaining server-side applications 2. Writing clean and efficient code using languages like Python, Java, or JavaScript 3. Building and testing REST APIs or backend services 4. Working with backend frameworks such as Django, FastAPI, or Express.js",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:19.365Z"
},
{
"listingId": "3148908",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/full-stack-development-internship-in-ahmedabad-at-hairdramaco-india-private-limited1778735266",
"title": "Full Stack Development",
"company": "Hairdramaco India Private Limited",
"companyUrl": "https://hairdramacompany.com/",
"location": "Ahmedabad",
"isRemote": false,
"stipend": "₹ 9,000 - 12,000 /month",
"stipendMin": 9000,
"stipendMax": 12000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 3,
"applicants": null,
"skills": [
"ChatGPT",
"Claude",
"Next.js",
"Node.js",
"Prompt Engineering",
"Python",
"React",
"REST API",
"TypeScript"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Informal dress code",
"Free snacks & beverages",
"Job offer"
],
"description": "As a Full Stack Development intern at Hairdramaco India Private Limited, you will have the opportunity to work with cutting-edge technologies such as Node.js, React, TypeScript, Python, REST API, Next.js, Claude, ChatGPT, and Prompt Engineering. Key Responsibilities: 1. Collaborate with the development team to design, build, and maintain efficient, reusable, and reliable code. 2. Implement new features and enhancements on our web application using the latest technologies and best practices. 3. Work on integrating third-party APIs and services to improve the functionality of our platform. 4. Assist in troubleshooting and resolving technical issues to ensure smooth operation of the website. 5. Conduct code reviews and provide constructive feedback to fellow team members. 6. Stay up-to-date with industry trends and advancements in web development to suggest innovative solutions. 7. Contribute to the overall success of the company by actively participating in team meetings and sharing your insights and ideas. 8. AI image and video generation If you are a passionate and skilled developer looking to gain hands-on experience in a dynamic and fast-paced environment, this internship opportunity is perfect for you. Join us in revolutionizing the beauty industry with technology!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:20.760Z"
},
{
"listingId": "3147641",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/part-time-full-stack-development-internship-in-multiple-locations-at-vans-co1778762212",
"title": "Full Stack Development",
"company": "VANS & Co",
"companyUrl": null,
"location": "Mumbai, Virar, Vasai-Virar",
"isRemote": false,
"stipend": "₹ 15,000 - 22,000 /month",
"stipendMin": 15000,
"stipendMax": 22000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 4,
"applicants": null,
"skills": [
"Android",
"CSS",
"Firebase",
"Flutter",
"iOS",
"Java",
"MongoDB",
"MS SQL Server",
"MySQL",
"Node.js",
"PostgreSQL",
"Postman",
"React",
"REST API",
"Spring Boot",
"Spring Data JPA",
"Tailwind CSS"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"5 days a week"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Developing and contributing to software modules and features 2. Writing clean, scalable, and efficient code 3. Debugging, testing, and optimizing existing systems. 4. Collaborating with internal teams to solve technical challenges 5. Documenting development work and maintaining progress logs 6. Meeting task deadlines and maintaining accountability for deliverables",
"isPartTime": true,
"hasJobOffer": false,
"postedAt": "Today",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:22.863Z"
},
{
"listingId": "3148218",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/java-development-internship-in-bangalore-at-svatantra-microfin-private-limited1778674025",
"title": "Java Development",
"company": "Svatantra Microfin Private Limited",
"companyUrl": "https://www.svatantramicrofin.com/",
"location": "Bangalore",
"isRemote": false,
"stipend": "₹ 15,000 - 18,000 /month",
"stipendMin": 15000,
"stipendMax": 18000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "12 Jun' 26",
"openings": 2,
"applicants": null,
"skills": [
"Hibernate ORM(Java)",
"Java",
"Spring MVC"
],
"perks": [
"Certificate",
"Free snacks & beverages"
],
"description": "Selected intern's day-to-day responsibilities include: 1.Develop and maintain Java-based applications following best practices. 2.Write clean, efficient, reusable, and testable code. 3.Participate in the design and architecture of new features and system enhancements. 4.Implement RESTful APIs and integrate with external systems. 5.Produce technical documentation as required.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:24.263Z"
},
{
"listingId": "3148907",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-java-development-internship-at-cloud-back1778735108",
"title": "Java Development",
"company": "Cloud Back",
"companyUrl": "https://www.linkedin.com/company/cloudback1/?viewAsMember=true",
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 10,000 - 20,000 /month",
"stipendMin": 10000,
"stipendMax": 20000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 3,
"applicants": null,
"skills": [
"Hibernate ORM(Java)",
"J2EE",
"Java",
"JSP",
"MySQL",
"Spring MVC"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"5 days a week"
],
"description": "Are you a skilled Java developer with knowledge of MySQL, JSP, J2EE, Hibernate ORM, and Spring MVC? Are you eager to gain hands-on experience in a fast-paced tech environment? Join our team as a Java development intern at Cloud Back company! Selected intern's day-to-day responsibilities include: 1. Collaborate with senior developers to design and implement Java-based applications. 2. Utilize MySQL to create and maintain databases for our cloud storage platform. 3. Develop dynamic web pages using JSP and Spring MVC framework. 4. Implement J2EE technologies to enhance application functionality and user experience. 5. Utilize Hibernate ORM for efficient data persistence and retrieval. 6. Assist in troubleshooting and debugging code to ensure optimal performance. 7. Stay up-to-date with the latest Java trends and technologies to contribute innovative ideas to our projects. If you're a motivated individual looking to kickstart your career in Java development, apply now to join our team and work on cutting-edge cloud solutions!",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "1 day ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:25.058Z"
},
{
"listingId": "3131404",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-qa-automation-internship-at-filesure-india-private-limited1777371415",
"title": "QA Automation",
"company": "FileSure India Private Limited",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 5,000 /month",
"stipendMin": 5000,
"stipendMax": 5000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "30 May' 26",
"openings": 4,
"applicants": null,
"skills": [
"Software Testing",
"Test Automation"
],
"perks": [
"Certificate",
"5 days a week"
],
"description": "FileSure is a compliance-tech startup simplifying access to ROC and MCA data for professionals, businesses, and investors. We help users easily download company filings, director data, and get daily alerts on new incorporations - all through a user-friendly, accurate, and reliable platform. As a QA Intern, you will ensure the quality, performance, and accuracy of FileSure's data-driven platform. You'll collaborate with the product and backend teams to test web features, verify data outputs, and maintain platform stability across all modules - MCA document access, company reports, and alert systems. Selected intern's day-to-day responsibilities include: 1. Test and validate end-to-end web application functionality (frontend + backend). 2. Write and execute automated test cases using tools like Selenium, Playwright, or Cypress. 3. Perform API testing using Postman/Pytest to ensure proper integration and data accuracy. 4. Verify extracted company data (e.g., P&L, Balance Sheet, Cashflow) for correctness. 5. Collaborate with developers to debug issues and optimize system performance. 6. Conduct UI/UX validation for dashboard consistency and responsiveness. 7. Manage version control and QA pipelines using Git/GitHub Actions/CI-CD tools. 8. Document and report bugs clearly with screenshots, logs, and reproduction steps.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:25.765Z"
},
{
"listingId": "3124035",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-mern-stack-development-internship-at-filesure-india-private-limited1776781272",
"title": "MERN Stack Development",
"company": "FileSure India Private Limited",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 5,000 /month",
"stipendMin": 5000,
"stipendMax": 5000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "22 May' 26",
"openings": 4,
"applicants": null,
"skills": [
"Express.js",
"MongoDB",
"Node.js",
"React"
],
"perks": [
"Certificate",
"5 days a week"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Develop and maintain web applications using the MERN stack (MongoDB, Express.js, React.js, Node.js) 2. Build responsive UI components using React.js 3. Design and develop RESTful APIs using Node.js and Express.js 4. Work with databases like MongoDB for data storage and management 5. Collaborate with team members to define, design, and ship new features 6. Debug issues and improve application performance 7. Write clean, scalable, and efficient code Requirements: 1. Basic understanding of MongoDB, Express.js, React.js, and Node.js 2. Knowledge of HTML, CSS, JavaScript 3. Familiarity with Git/GitHub 4. Understanding of APIs and backend integration 5. Good problem-solving skills and willingness to learn",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:26.261Z"
},
{
"listingId": "3109533",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-backend-development-internship-at-vizon1775608222",
"title": "Backend Development",
"company": "VIZON",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 11,000 - 17,000 /month",
"stipendMin": 11000,
"stipendMax": 17000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "29 May' 26",
"openings": 4,
"applicants": null,
"skills": [
"Amazon DynamoDB",
"Amazon S3",
"CSS",
"HTML",
"Linux",
"MEAN",
"MERN",
"MySQL"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Job offer"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Collaborating with the development team to design and implement backend solutions for web applications 2. Writing clean and efficient code while adhering to best practices and coding standards 3. Developing and maintaining APIs and integrating them with front-end applications 4. Assisting in database design and optimization for improved performance 5. Troubleshooting and debugging issues to ensure smooth functionality of applications 6. Conducting code reviews and providing constructive feedback to improve code quality 7. Keeping up-to-date with the latest industry trends and technologies to contribute innovative ideas to the team",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:27.161Z"
},
{
"listingId": "3109520",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-front-end-development-internship-at-vizon1775608135",
"title": "Front End Development",
"company": "VIZON",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 12,000 - 20,000 /month",
"stipendMin": 12000,
"stipendMax": 20000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "29 May' 26",
"openings": 4,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript",
"JSON",
"React",
"UI & UX Design"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Job offer"
],
"description": "VIZON is seeking a dynamic and talented Front End Development intern to join our innovative team. If you have a passion for JavaScript, CSS, HTML, and UI/UX design, this is the perfect opportunity for you! Selected intern's day-to-day responsibilities include: 1. Collaborate with our creative team to develop and implement visually stunning and user-friendly web applications. 2. Utilize your strong HTML, CSS, and JavaScript skills to create responsive and interactive user interfaces. 3. Employ Design Thinking methodologies to analyze user requirements and provide scalable solutions. 4. Support developing and maintaining our web applications, ensuring high-quality code and adherence to best practices. 5. Conduct UI & UX testing to identify areas for improvement and optimize overall user experience. 6. Stay up-to-date with emerging technologies and trends in front-end development, and share insights with the team. 7. Assist with gathering and analyzing user data to inform design decisions and enhance our products. Join us at VIZON, and gain hands-on experience in a fast-paced and collaborative environment while contributing to the creation of cutting-edge web applications. Apply now and be part of our innovative team! You can visit our website https://vizon.tech to know more. If you want to explore open source projects, then check the cub section of the website.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:27.664Z"
},
{
"listingId": "3105344",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/web-development-internship-in-multiple-locations-at-vizon1775221357",
"title": "Web Development",
"company": "VIZON",
"companyUrl": null,
"location": "Dehradun, Bangalore",
"isRemote": false,
"stipend": "₹ 12,000 - 20,000 /month",
"stipendMin": 12000,
"stipendMax": 20000,
"duration": "4 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "24 May' 26",
"openings": 4,
"applicants": null,
"skills": [
"Amazon Web Services (AWS)",
"Backend development",
"CSS",
"Frontend development",
"HTML",
"JavaScript",
"Three.js",
"UI & UX Design"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"Free snacks & beverages",
"Job offer"
],
"description": "We are looking for a talented Full Stack Development intern to join our team at VIZON. If you are passionate about creating innovative solutions and have a strong foundation in HTML, CSS, JavaScript, Three.js, AWS, DynamoDB, UI & UX Design, then this opportunity is perfect for you. Key Responsibilities- 1. Collaborate with the development team to design and revamp our website as we launch the most advanced consumer tech product ever developed in India 2. Develop the front-end and back-end systems 3. Create visually appealing user interfaces that enhance user experience 4. Utilize Amazon DynamoDB and AWS services like Lambda, S3, EC2 & Route 53 to optimize data storage and management 5. Implement Three.js for 3D visualization and interactive web experiences 6. Conduct thorough testing and troubleshooting to ensure seamless functionality If you are passionate and creative, apply now to be a part of our dynamic team and gain valuable hands-on experience in Full Stack Development",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:28.360Z"
},
{
"listingId": "3105341",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/work-from-home-web-development-internship-at-vizon1775221012",
"title": "Web Development",
"company": "VIZON",
"companyUrl": null,
"location": "Work from home",
"isRemote": true,
"stipend": "₹ 10,000 - 20,000 /month",
"stipendMin": 10000,
"stipendMax": 20000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "24 May' 26",
"openings": 4,
"applicants": null,
"skills": [
"Cloud Computing",
"CSS",
"HTML",
"JavaScript",
"UI & UX Design"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Job offer"
],
"description": "Are you passionate about web development and have strong experience in HTML, CSS, JavaScript, UI & UX design, and Amazon Web Services (AWS)? VIZON is seeking an enthusiastic, hardworking, and talented web development intern to join our team. As a web development intern, you'll help us create and maintain web applications that are designed to meet customer needs. You will be responsible for using your technical knowledge to develop and improve our websites. You'll also assist us in deploying and managing various applications on AWS. Selected intern's day-to-day responsibilities include: 1. Develop and maintain web applications 2. Assist in deploying and managing applications on AWS 3. Troubleshoot web applications for any issues or bugs 4. Design user interface and user experience for web applications 5. Optimize websites for maximum speed and scalability 6. Create and modify HTML, CSS, and JavaScript code 7. Develop applications or websites for cross-browser compatibility 8. Stay up-to-date with the latest web technologies You can visit our website https://vizon.tech to know more If you want to explore open source projects, then check the Club section of the website. And join our Discord server to stay updated: https://discord.gg/z6vfsbBtu8",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:29.457Z"
},
{
"listingId": "3092984",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/full-stack-development-internship-in-dehradun-at-vizon1774398659",
"title": "Full Stack Development",
"company": "VIZON",
"companyUrl": null,
"location": "Dehradun",
"isRemote": false,
"stipend": "₹ 12,000 - 20,000 /month",
"stipendMin": 12000,
"stipendMax": 20000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "15 May' 26",
"openings": 3,
"applicants": null,
"skills": [
"Amazon DynamoDB",
"Amazon Web Services (AWS)",
"Backend development",
"CSS",
"Frontend development",
"HTML",
"JavaScript",
"Three.js",
"UI & UX Design"
],
"perks": [
"Certificate",
"Letter of recommendation",
"Flexible work hours",
"Informal dress code",
"Free snacks & beverages",
"Job offer"
],
"description": "We are looking for a talented Full Stack Development intern to join our team at VIZON. If you are passionate about creating innovative solutions and have a strong foundation in HTML, CSS, JavaScript, Three.js, AWS, DynamoDB, UI & UX Design, then this opportunity is perfect for you. Key Responsibilities: 1. Collaborate with the development team to design and revamp our website as we launch the most advanced consumer tech product ever developed in India. 2. Develop the front-end and back-end systems. 3. Create visually appealing user interfaces that enhance user experience. 4. Utilize Amazon DynamoDB and AWS services like Lambda, S3, EC2 & Route 53 to optimize data storage and management. 5. Implement Three.js for 3D visualization and interactive web experiences. 6. Conduct thorough testing and troubleshooting to ensure seamless functionality. If you are passionate and creative, apply now to be a part of our dynamic team and gain valuable hands-on experience in Full Stack Development.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:29.765Z"
},
{
"listingId": "3149026",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/web-development-internship-in-pune-at-aliv-regenerative-wellness1778757742",
"title": "Web Development",
"company": "ALIV - Regenerative Wellness",
"companyUrl": "https://www.alivtherapy.in/",
"location": "Pune",
"isRemote": false,
"stipend": "₹ 6,000 - 8,000 /month",
"stipendMin": 6000,
"stipendMax": 8000,
"duration": "3 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "13 Jun' 26",
"openings": 1,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript",
"Node.js",
"PHP",
"WordPress"
],
"perks": [],
"description": "Selected intern's day-to-day responsibilities include: A. Website Management & Development 1. Manage and update websites on GoDaddy, Hostinger, WordPress, and related CMS platforms 2. Handle content uploads, page builds, plugin configuration, and basic troubleshooting 3. Coordinate new page development from brief to live publish 4. Maintain site speed, mobile responsiveness, and uptime 5. Develop deep working knowledge of web stack: themes, builders, integrations, and analytics B. Performance Tracking & Reporting 1. Monitor Google Analytics and site performance dashboards daily 2. Report on traffic patterns, user behaviour, and conversion paths 3. Identify what's working, what's not, and recommend next moves C. Content Coordination 1. Work with the content and design teams to publish blogs, landing pages, and therapy pages 2. Ensure every page shipped meets brand and quality standards D. Team Feedback Loop 1. Share regular insights with marketing and clinical teams on user behaviour and content gaps 2. Help ensure ALIV's digital messaging reflects real patient needs",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Today",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:30.265Z"
},
{
"listingId": "3138472",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/wordpress-development-internship-in-bhopal-at-adymize1777896861",
"title": "WordPress Development",
"company": "Adymize",
"companyUrl": "https://www.adymize.com/",
"location": "Bhopal",
"isRemote": false,
"stipend": "₹ 10,000 - 15,000 /month",
"stipendMin": 10000,
"stipendMax": 15000,
"duration": "2 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "3 Jun' 26",
"openings": 5,
"applicants": null,
"skills": [
"CSS",
"HTML",
"JavaScript",
"PHP",
"Search Engine Optimization (SEO)",
"WordPress"
],
"perks": [
"Certificate",
"Letter of recommendation"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Develop, customize, and maintain WordPress websites as per project requirements. 2.Work on website page creation using Elementor, Gutenberg, or other WordPress page builders. 3.Customize WordPress themes, layouts, headers, footers, and plugins for better functionality. 4.Upload, edit, and manage website content including images, blogs, landing pages, and forms. 5.Ensure websites are fully responsive across mobile, tablet, and desktop devices. 6.Optimize website speed, performance, and basic on-page SEO elements. 7.Troubleshoot bugs, broken layouts, plugin conflicts, and website errors. 8.Integrate contact forms, WhatsApp chat, payment gateways, and third-party tools when required. 9.Coordinate with the design and digital marketing team to implement website updates. 10.Assist in website migration, backup management, security updates, and regular maintenance.",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:31.859Z"
},
{
"listingId": "3146792",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/web-development-internship-in-jodhpur-at-fintech-it-solutions-llp1778571189",
"title": "Web Development",
"company": "Fintech IT Solutions LLP",
"companyUrl": "http://www.ftisindia.com",
"location": "Jodhpur",
"isRemote": false,
"stipend": "₹ 10,000 /month",
"stipendMin": 10000,
"stipendMax": 10000,
"duration": "5 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "11 Jun' 26",
"openings": 3,
"applicants": null,
"skills": [
"Angular",
"JavaScript",
"Node.js",
"PostgreSQL",
"TypeScript"
],
"perks": [
"Certificate",
"Flexible work hours"
],
"description": "Selected intern's day-to-day responsibilities include: 1. Complete the daily assignment of programming 2. Working on newly developed frameworks and their functioning 3. Testing of the work done 4. Learn to work with and without AI Tools (Both)",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": null,
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:32.060Z"
},
{
"listingId": "3147708",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/software-development-internship-in-nagpur-at-thinkersteps-technologies-private-limited1778649818",
"title": "Software Development",
"company": "Thinkersteps Technologies Private Limited",
"companyUrl": null,
"location": "Nagpur",
"isRemote": false,
"stipend": "₹ 5,000 - 8,000 /month",
"stipendMin": 5000,
"stipendMax": 8000,
"duration": "6 Months",
"startDate": "Starts immediatelyImmediately",
"applyBy": "12 Jun' 26",
"openings": 4,
"applicants": null,
"skills": [
".NET",
"Angular",
"CSS",
"HTML",
"Java",
"MS SQL Server",
"MySQL",
"React",
"SQL"
],
"perks": [],
"description": "About the internship We are looking for a passionate and eager-to-learn Full Stack Developer Intern to join our development team. The intern will assist in building and maintaining web applications, gaining hands-on experience with both front-end and back-end technologies. This role is perfect for someone who wants to start their career in software development and work on real-time projects under the guidance of experienced developers. Key Responsibilities: Assist in developing and maintaining web applications. Work on both front-end (UI/UX) and back-end (server-side) components. Collaborate with senior developers and designers to understand project requirements. Participate in team meetings, brainstorming sessions, and code reviews. Help debug and fix minor software issues. Write clean, maintainable, and well-documented code. Learn and adapt to new tools, technologies, and development processes. Selected intern's day-to-day responsibilities include:",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "2 days ago",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:32.464Z"
},
{
"listingId": "3150405",
"listingType": "internships",
"url": "https://internshala.com/internship/detail/frontend-developer-internship-in-maharashtra-at-idms-infotech-private-limited1778834426",
"title": "Frontend Developer",
"company": "IDMS Infotech Private Limited",
"companyUrl": null,
"location": "Maharashtra",
"isRemote": false,
"stipend": "Competitive stipend",
"stipendMin": null,
"stipendMax": null,
"duration": "6 Months",
"startDate": "15 May - 19 Jun' 26",
"applyBy": "Not Provided",
"openings": 1,
"applicants": null,
"skills": [],
"perks": [],
"description": "Hiring: Software Development Engineer FrontendCompany DescriptionIDMS Infotech is a technology-driven software company specializing in ERP and enterprise application development for MSMEs. With over 30 years of industry experience, we build scalable, process-oriented solutions that help businesses streamline operations, improve efficiency, and accelerate digital transformation.Role OverviewWe are looking for a Frontend Developer with practical experience in React.js development, responsive UI implementation, and frontend application structuring. The role involves working on real-world ERP and enterprise applications used in live business environments, with a strong focus on clean implementation, scalable architecture, and production-ready development practices.Key Responsibilities Develop responsive and optimized frontend interfaces using React.js Build reusable components and maintain structured frontend architecture Work with backend APIs and integration workflows Translate provided layouts and workflows into production-ready interfaces Debug UI inconsistencies and optimize frontend performance Write clean, modular, and maintainable code following engineering best practicesRequired Skills React.js JavaScript HTML/CSS API Integration Basic MERN-stack understanding Git-based workflows Familiarity with AI-assisted development tools (Cursor, GPT-based IDEs, etc.) Strong problem-solving and structured thinking abilityWork Details Onsite Thane (Mumbai) Monday to Saturday (Saturday Half Day) Internship Stipend 15,000/month Strong full-time opportunity based on performanceAdditional Notes Candidates must include their GitHub, portfolio, or project links in the application/resume Preference will be given to candidates residing in or near Thane/Mumbai due to the onsite nature of the role",
"isPartTime": false,
"hasJobOffer": false,
"postedAt": "Just now",
"category": "web-development",
"scrapedAt": "2026-05-15T11:04:33.763Z"
}
] |