Sarkari Jankari
Government Job Alerts (Sarkari Naukri) • Clean & Ads-optimized
Sarkari Jankari is a fast, lightweight mobile application built with React Native and Expo. It delivers instant, real-time push alerts for the latest government job recruitments, admit cards, exam schedules, and results across India, aggregated directly from trusted official portals.
-
Sub-Second Push Notifications
Powered by Firebase FCM for immediate notifications the moment a PDF is uploaded.
-
State & Sector-Level Filters
Choose your state and exam preferences during onboarding for a personalized alert feed.
-
Offline-First SQLite Cache
Search, bookmark, and review recruitment specifications even without active data coverage.
App Architecture & Features.
Firebase FCM Pipeline.
Sarkari Jankari triggers notifications via Firebase Cloud Messaging topics. Our automation scripts index government portals and push formatted payloads instantly to subscribed user filters.
const message = {
topic: `state_$\{userState\}`,
notification: {
title: 'New Job Alert!',
body: `$\{postName\} - $\{vacancyCount\} Vacancies`
},
data: { jobId: post.id.toString() }
};
SQLite Client-Side Storage.
To enable reliable offline caching and ultra-fast searching, job specs are indexed in a local SQLite file database on the phone. Results filter in real-time as users type.
db.transaction(tx => {
tx.executeSql(
'SELECT * FROM jobs WHERE title LIKE ? OR org LIKE ? ORDER BY id DESC',
[`%${searchQuery}%`, `%${searchQuery}%`],
(_, { rows }) => setAlerts(rows._array)
);
});