ShareNow

A clean and quick way to share your files in your contacts. Just upload the file and send the download link to your contacts. (by varun21vaidya)

ShareNow Alternatives

Similar projects and alternatives to ShareNow based on common topics and language

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better ShareNow alternative or higher similarity.

ShareNow reviews and mentions

Posts with mentions or reviews of ShareNow. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-06.
  • MEAN Stack Project: Create Quick File Share Application: Part 2 Backend
    1 project | dev.to | 6 Jan 2023
    const express = require('express'); const app = express(); const PORT = process.env.PORT || 3000; const path = require('path'); const dotenv = require('dotenv') dotenv.config({ path: './.env' }) const connectDB = require('./config/db'); connectDB(); var cors = require('cors'); // use it before all route definitions // app.use(cors({ origin: ['https://share-now-backend-gi2ea360d-varun21vaidya.vercel.app/', 'https://share-now-file-sharing-app.vercel.app/', 'http://localhost:4200'] })); // cors policy app.use(cors({ origin: ['https://share-now-backend.vercel.app/https://share-now-file-sharing-app.vercel.app/', 'https://share-now-backend.vercel.app/http://localhost:4200'], // use your actual domain name (or localhost), using * is not recommended methods: ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS'], allowedHeaders: ['Content-Type', 'Origin', 'X-Requested-With', 'Accept', 'x-client-key', 'x-client-token', 'x-client-secret', 'Authorization'], credentials: true })) app.use(express.json()); // setup static files // using app.use to serve up static CSS files in public/css/ folder // when /public link is called in ejs files // app.use("/route", express.static("foldername")); app.use('/public', express.static('public')); //template engine app.set('views', path.join(__dirname, '/views')); app.set('view engine', 'ejs'); // Routes // to upload file use this route app.use('/api/files', require('./routes/files')); // when file is uploaded it returns this route app.use('/files', require('./routes/show')); // to download file use this route app.use('/files/download', require('./routes/download')); app.listen(PORT, console.log(`Listening on port ${PORT}.`));
  • MEAN Stack Project: Create Quick File Share Application
    2 projects | dev.to | 6 Jan 2023
    so here I am giving Project Repo to go to if you face any problem just clone it in your folder by writing this in terminal git clone repolink Frontend Repo: https://github.com/varun21vaidya/ShareNow Backend Repo: https://github.com/varun21vaidya/ShareNow-Backend

Stats

Basic ShareNow repo stats
2
1
1.5
about 1 year ago

The primary programming language of ShareNow is TypeScript.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com