Compare commits
7 commits
3fc84001c1
...
498ceec658
Author | SHA1 | Date | |
---|---|---|---|
498ceec658 | |||
fae723e44d | |||
9d6ba487f5 | |||
2909538c88 | |||
9d27658cce | |||
c14a97cbca | |||
6939fd45c7 |
7 changed files with 21 additions and 24 deletions
3
app.js
3
app.js
|
@ -3,8 +3,6 @@ var express = require('express');
|
|||
var path = require('path');
|
||||
var cookieParser = require('cookie-parser');
|
||||
var logger = require('morgan');
|
||||
const bodyParser = require('body-parser');
|
||||
|
||||
|
||||
var indexRouter = require('./routes/index');
|
||||
var usersRouter = require('./routes/users');
|
||||
|
@ -19,7 +17,6 @@ app.use(logger('dev'));
|
|||
app.use(express.json());
|
||||
app.use(express.urlencoded({ extended: false }));
|
||||
app.use(cookieParser());
|
||||
app.use(bodyParser.urlencoded({ extended: true }));
|
||||
app.use(express.static(path.join(__dirname, 'public')));
|
||||
|
||||
app.use('/', indexRouter);
|
||||
|
|
|
@ -1,22 +1,19 @@
|
|||
{
|
||||
"name": "jeff-downloader2",
|
||||
"version": "0.0.1",
|
||||
"version": "0.2.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node ./bin/www"
|
||||
},
|
||||
"dependencies": {
|
||||
"body-parser": "^1.19.0",
|
||||
"cookie-parser": "~1.4.4",
|
||||
"debug": "~2.6.9",
|
||||
"ejs": "~2.6.1",
|
||||
"express": "~4.16.1",
|
||||
"express-formidable": "^1.2.0",
|
||||
"fluent-ffmpeg": "^2.1.2",
|
||||
"formidable": "^1.2.2",
|
||||
"http-errors": "~1.6.3",
|
||||
"morgan": "~1.9.1",
|
||||
"youtube-dl": "^3.5.0",
|
||||
"youtube-dl-exec": "^1.2.3"
|
||||
"youtube-dl": "^3.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -100,10 +100,3 @@ a:hover {
|
|||
background-color: #ff2400;
|
||||
}
|
||||
}
|
||||
|
||||
progress::-webkit-progress-value {
|
||||
-webkit-transition : width 1s ease;
|
||||
-moz-transition : width 1s ease;
|
||||
-o-transition : width 1s ease;
|
||||
transition : width 1s ease;
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
body {
|
||||
padding: 50px;
|
||||
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00B7FF;
|
||||
}
|
0
public/thumbnail/tmp/a
Normal file
0
public/thumbnail/tmp/a
Normal file
0
public/uploads/hidden/a
Normal file
0
public/uploads/hidden/a
Normal file
|
@ -24,6 +24,18 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
|||
<title>jeff</title>
|
||||
</head>
|
||||
<body class="has-text-light gradientBG">
|
||||
<ul class="circles">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
<section class="section has-text-centered">
|
||||
<div class="container ">
|
||||
<h1 class="title has-text-light">Le epic downloader v<%= version %>%></h1>
|
||||
|
@ -182,7 +194,13 @@ Come take a look here https://git.namejeff.xyz/Supositware/jeff-downloader for a
|
|||
</div>
|
||||
</section>
|
||||
<% } %>
|
||||
|
||||
<footer class="footer has-background-grey-dark has-text-light has-text-centered">
|
||||
<p>Uses SponsorBlock API from <a href="https://sponsor.ajay.app/">https://sponsor.ajay.app/</a></p>
|
||||
<p>I don't take any accountability for downloads made using this website.</p>
|
||||
<p>Credit to <a href="https://github.com/rg3/youtube-dl/">youtube-dl</a> - My other projects <a href="https://discordapp.com/oauth2/authorize?client_id=377563711927484418&scope=bot&permissions=0">Haha yes</a> & <a href="https://twitter.com/YTPB5k">YTP twitter bot</a> - Numbers of visits: <%= viewCounter %> - Contact <a href="https://discord.gg/cNRh5JQ">Supositware#1616</a> on Discord if you have any issues</p>
|
||||
<p>You can also support me either on <a href="https://www.paypal.me/supositware">Paypal</a> Or by tipping <a href="https://basicattentiontoken.org/">BAT</a> on this website!</p>
|
||||
<p><a href="https://git.namejeff.xyz/Supositware/jeff-downloader">Source code</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
<script>
|
||||
let uuid = uuidv4();
|
||||
|
|
Loading…
Reference in a new issue