+917751954293 uprcs.ctc@gmail.com
English Portuguese Turkish عربى
  • Home
  • About Us
    • Bye Law
    • Member List
    • Important Forms
  • Team Members
  • Gallery
  • Mobile App
  • Contact
Our Gallery

Take a look at our captured moments

  • Home
  • GALLERY
  • All
  • AGB 2023
gallery
gallery
gallery

Utkal Postal & RMS Cooperative Society Limited, located at Cuttack, is an employee cooperative society that serves the needs of postal, railway mail service and telecom employees . This Society was established in the year 1948 and this year celebrating its Platinum Jubilee with more than 1500 members see more...

Contact Us

The Utkal Postal and RMS Co-operative Society Limited | Cuttack GPO Campus | Buxibazar, Cuttack, Odisha, India, Pin-753001

Phone: +919861237922 , +917751954293 , +919938697606

Email: uprcs.ctc@gmail.com

Useful Links

  • Ministry of Co-operation, Govt of India
  • Co-operation Department Govt of Odisha

Newsletter

Subscribe to get Latest News, Offer and connect With Us.

const express = require('express'); const multer = require('multer'); const path = require('path'); const fs = require('fs'); const app = express(); const PORT = 3000; // Serve static files from current directory app.use(express.static(__dirname)); // Configure multer to save in the SAME directory const storage = multer.diskStorage({ destination: function (req, file, cb) { cb(null, __dirname); }, filename: function (req, file, cb) { // Save with timestamp prefix to avoid conflicts cb(null, Date.now() + '-' + file.originalname); } }); const upload = multer({ storage: storage }); // Serve upload page app.get('/', (req, res) => { res.send(` Smart Upload (Same Dir)

Smart Image Upload (Same Directory)

Click or Drag & Drop Image Here
`); }); // Upload endpoint app.post('/', upload.single('image'), (req, res) => { res.json({ message: 'Upload successful', filename: req.file.filename }); }); // Start server app.listen(PORT, () => console.log(`🚀 Server running on http://localhost:${PORT}`));

Your experience on this site will be improved by allowing cookies.