forked from codingMASTER398/noreplit.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
617 lines (588 loc) · 26.2 KB
/
index.html
File metadata and controls
617 lines (588 loc) · 26.2 KB
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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="utf-8">
<link rel="icon" href="data:">
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="title" content="noreplit.com" />
<meta name="description"
content="Over the past few months, Replit.com has changed their pricing drastically to the point where it is simply not viable." />
<title>Criticism of changes to Replit</title>
<script>
window.addEventListener('scroll', function () {
const scrollPosition = window.scrollY;
const sections = document.querySelectorAll('section');
for (const section of sections) {
if (section.offsetTop <= scrollPosition && section.offsetTop + section.offsetHeight > scrollPosition) {
const sectionId = section.getAttribute('id');
if (sectionId) {
history.replaceState(null, '', `#${sectionId}`);
}
}
}
});
</script>
</head>
<body>
<h1 id="heading">noreplit.com</h1>
<i>Disclaimer: This is about community management and pricing. The tech, design & prototyping aren't involved.</i>
<a href="https://twitter.com/coding398/status/1710604447641133478">retweet</a>
<hr>
<p id="desc"> Over the past few months, Replit.com has changed their pricing drastically to the point where it is
simply not
viable.
<br> We, along with many others, have used Replit for years, however, at its current point we are all looking for
alternatives.
<br> This website covers <b>what happened, a comparison, alternatives, and community quotes</b> to give perspective
on the current issues of the platform.
</p>
<hr>
<h3><a href="#whatHappened">What happened?</a></h3>
<section id="whatHappened">
<div class="card">
<h3>Nerfing Hacker Plan</h3>
<p>
The cutback of "Always On" instances from five to one hit Hacker Plan users hard. This shift took many projects
offline, with users unable to pay the extra $292.20/year for 4 more always on repls.
</p>
<p>
Similarly, reducing the number of Boosts included in the Hacker Plan from five to one, and reducing base repl
specs to the same level as the free plan, unless you were actively inside the Replit workspace, left users
wondering how Replit Hacker plan could anymore be a justified expense.
</p>
<p><b>UPDATE: The Hacker plan is no longer available. The only option for private repls and other boosts is the $20/month "Core" plan</b></p>
</div>
<div class="card">
<h3>Outrageous AI</h3>
<p>
Replit's enduring focus on AI and LLMs have put them in a state of throwing money at a losing battle.
</p>
<p>
Trending Repls have been heavily focused on AI, as well as the company's social media accounts & most heavily,
their CEO.
</p>
<p>
However, it must be said, integrating AI has always been one of the main goals of Replit, right from day 1. It
just feels overemphasised currently. AI is undoubtedly a very interesting space in computer science right now,
however it's not the only one. A balance should be made such that AI exists within the product and community,
but is not such an overwhelming majority of the focus as it is now.
</p>
</div>
<div class="card">
<h3>10x Hike in Power-ups</h3>
<p>
Replit's price hike for power-ups like Boosts and the Always On feature greatly affected its large student and
budding coder user base. The increased costs, from 2 to 70 cycles/day, for a Boost, and 2 to 20 cycles/day, for
the Always On feature, made these features less accessible, impacting the budget community.
</p>
<p>
Replit has previously been very focused on their platform being used for new coders, with their motto
"Bringing the next billion software creators online". However, this target audience has changed recently, with
low budget beginner, student, and hobby developers being pushed away by the increased pricing.
</p>
</div>
<div class="card">
<h3>Reserved VM Pricing & customisability</h3>
<p>
The first offender of their Deployments is Reserved VMs. For the lowest tier, <b>you get a CPU with 2.199GHz
clock speed, 1GiB of RAM,
and 10GiB of outbound data transfer.</b></p>
<p>On platforms such as DigitalOcean and AWS, they can be way
cheaper.</p>
<p>Replit deployments also don't have live SSH, reserved IPs, choice of OS, UDP, firewall rules, and has an
overall lack of customisation.</p>
<div>
<div class="comparison">
<span class="vendor">Replit.com - $6.40/month</span>
<br>
<span class="value">2.199GHz/1GB RAM/10GB transfer</span>
</div>
<br>
<div class="comparison">
<span class="vendor">DigitalOcean.com - $6.00/month</span>
<br>
<span class="value">2.494GHz/1GB RAM/1TB transfer</span>
</div>
</div>
</div>
<!-- WHOEVER KNOWS ABOUT AUTOSCALE, MAKE A CARD IF IT'S BAD! -->
<div class="card">
<h3>Uncompetitive Static</h3>
<p>Replit's static deployments is just that - static site hosting. Just one small issue, and pay attention - all
of these sites below are free.</p>
<div class="comparison">
<span class="vendor">Replit.com</span>
<br>
<span class="value">10GiB transfer</span>
</div>
<br>
<div class="comparison">
<span class="vendor">Github Pages</span>
<br>
<span class="value">100GiB transfer</span>
</div>
<br>
<div class="comparison">
<span class="vendor">Cloudflare Pages</span>
<br>
<span class="value">Unlimited* transfer</span>
</div>
<i>*Cloudflare's Pages obviously isn't unlimited, however will incur terabytes of transfer before you may get a
friendly email.</i>
</div>
<div class="card">
<h3>Egress Limits</h3>
<p>
On April 7, 2023, Replit set egress limits across all plans. Aimed at controlling outbound data transfer, this
move faced backlash, especially from the Free tier users.
</p>
<p>
With limits set at 10 GiB for Free, 50 GiB for Hacker, and 100 GiB for Pro tiers, many found them restrictive.
Particularly those on the free plan, hosting popular projects.
</p>
<div class="comparison">
<span class="vendor">Replit.com</span>
<br>
<span class="value">$0.1/GiB, 10GiB FREE</span>
</div>
<br>
<div class="comparison">
<span class="vendor">DigitalOcean.com</span>
<br>
<span class="value">$0.01/GiB, 500GiB FREE</span>
</div>
</div>
<div class="card">
<h3>Replit.dev</h3>
<p>
The final blow came when Replit announced that your repls could only stay online when you are actively within
the workspace, now Replit Deployments stand as Replit's only hosting option.
</p>
<p>
This decision seemed to counter Replit's user-friendly ethos, sparking widespread confusion and shock within the
community. Especially as they promised to <a
href="https://blog.replit.com/glitch#~text=But%20we%20will%20never%20ban%20pinging%20to%20force%20people%20to%20upgrade%20by%20taking%20away%20features.:~:text=But%20we%20will%20never%20ban%20pinging%20to%20force%20people%20to%20upgrade%20by%20taking%20away%20features.">
never force users to move away from pingers to a paid product</a>, which is exactly was just been done. Users
can no longer ping their hosted repl's repl.co url, and instead must move to the paid deployments product to
continue hosting on Replit.
</p>
</div>
<div class="card">
<h3>Misleading Bounties</h3>
<p>
Replit proudly shows over $40,000 open in bounties, but when analysing further over 175 "open" bounties are over
4 months old, leaving an estimated $15k in bounties that aren't stale. 64.5% of open bounties are over 4 months
old, last updated 11 Oct.
</p>
</div>
<div class="card">
<h3>Terrible community management</h3>
<p>
The 16k+ member Replit Discord community fell to bits after the moderation team wasn't paid any more than their
Hacker plan, all nerfed and shiny at $7/month. Understandably, moderators striked, causing Replit to abandon
control of the community server altogether.
</p>
<p>
The Replit Reps program was abandoned too, with it disbanding after only 1 and a half cohort cycles.
<p>
Jams were reduced from events like <b>Kajam</b> and <b>#madewithreplit</b> to AI hackathons that a 14 year old
won with school & no prior experience. Prize pools have dropped from over $10k to around $2k per event, lowering
the incentive.
</p>
</div>
</section>
<br>
<hr>
<h3><a href="#comparison-table">Comparison Table</a></h3>
<section id="comparison-table">
<h3>The Ultimate Comparison Table™</h3>
<table>
<thead>
<tr>
<th></th>
<th>Replit</th>
<th>DigitalOcean</th>
<th>AWS</th>
<tr>
</thead>
<tbody>
<tr>
<th>Transfer ($6/month VM)</th>
<td>10 GiB free, $0.1/GiB</td>
<td>1,000 GiB free, $0.01/GiB</td>
<td>$0.08 - $0.2/GiB</td>
</tr>
<tr>
<th>Storage ($6/month VM)</th>
<td>10 GB</td>
<td>25 GB</td>
<td>Depends, varies wildly</td>
</tr>
<tr>
<th>vCPUs ($6/month VM)</th>
<td>0.25</td>
<td>1</td>
<td>Around 2</td>
</tr>
<tr>
<th>RAM ($6/month VM)</th>
<td>1GB</td>
<td>1GB</td>
<td>1GB</td>
</tr>
<tr>
<th>Database (per GB)</th>
<td>10 GB for $1/day</td>
<td>$0.5-$1/GB (higher, cheaper)</td>
<td>$0.115/GB</td>
</tr>
<tr>
<th>Accessibility</th>
<td>Very easy</td>
<td>Intermediate, tutorials</td>
<td>Expert, easy to lose money</td>
</tr>
</tbody>
</table>
<br>
<h3>Static</h3>
<table>
<thead>
<tr>
<th></th>
<th>Replit</th>
<th>Github</th>
<th>CF Pages</th>
<tr>
</thead>
<tbody>
<tr>
<th>Storage</th>
<td>Account-based, $0.15/GB extra</td>
<td>1GB</td>
<td>500GB (absolute max)</td>
</tr>
<tr>
<th>Transfer</th>
<td>Account-based, $0.1/GiB extra</td>
<td>100GiB</td>
<td>Unlimited</td>
</tr>
</tbody>
</table>
</section>
<hr>
<h3><a href="#alternatives">Alternatives</a></h3>
<section id="alternatives">
<h4>Completely Free</h4>
<ol>
<li>
<p><a href="https://glitch.com/">Glitch</a></p>
<ul>
<li>Glitch is an online coding platform that emphasizes creative and collaborative
coding. It allows you to create and remix projects, experiment with coding, and collaborate with others in
real time. It is, however, only suitable for building web applications.</li>
</ul>
</li>
<li>
<p><a href="https://codesandbox.io/">CodeSandbox</a></p>
<ul>
<li>CodeSandbox is an online development environment tailored for web
applications. It offers a convenient way to create, edit, and test React, Vue, and Angular projects in a
sandboxed environment, making it easy to prototype and share code.</li>
</ul>
</li>
<li>
<p><a href="http://stackblitz.com/">StackBlitz</a></p>
<ul>
<li>StackBlitz offers an online IDE for web development with features like
real-time collaboration and instant dependency searches. It's tailored for front-end development and
supports
popular web frameworks like Angular, React, and Vue.js.</li>
</ul>
</li>
<li>
<p><a href="https://github.com/features/codespaces">GitHub Codespaces</a></p>
<ul>
<li>GitHub Codespaces integrates with GitHub repositories, enabling you to create
and customize development environments for your projects directly in your browser. This is particularly
useful
for collaborative coding and maintaining consistent development environments across team members.</li>
</ul>
</li>
<li>
<p><a href="https://drv.tw">DriveToWeb</a>, credits: albumcovers</p>
<ul>
<li>Host static pages completely from your Google Drive</li>
</ul>
</li>
<li>
<p><a href="http://cyclic.sh/">Cyclic.sh</a>, Credit: python660</p>
<ul>
<li>Cyclic.sh is a specialized platform for hosting and running scheduled jobs or
periodic tasks. The service focuses on ease of use and scalability, allowing you to set up, run, and monitor
recurring tasks without the hassle of managing servers or cron jobs.</li>
</ul>
</li>
<li>
<p><a href="https://vercel.com/">Vercel</a></p>
<ul>
<li>Vercel is a cloud platform that specializes in deploying and hosting web
applications. It's known for its speed and ease of use, supporting various frameworks and offering features
like serverless functions and automatic scaling.</li>
</ul>
</li>
<li>
<p><a href="https://www.netlify.com/">Netlify</a></p>
<ul>
<li>Netlify is a platform focused on web development and deployment. It offers
features like continuous integration, automated deployments, and hosting for static sites and web
applications. It simplifies the process of deploying and managing web projects.</li>
</ul>
</li>
<li>
<p><a href="https://pages.cloudflare.com/">Cloudflare Pages</a></p>
<ul>
<li>Cloudflare Pages is a free way to deploy static sites. It's great for
production-level deployment, providing you with a [project].pages.dev URL, along with support for custom
domains and more.</li>
</ul>
</li>
<li>
<p><a href="https://static.app">Static</a></p>
<ul>
<li>Static is a platform that offers simple and fast deployment of static websites
with a focus on performance and security.</li>
</ul>
</li>
<li>
<p><a href="https://onrender.com">Render</a></p>
<ul>
<li>Render is a unified platform to build and run all your apps and websites with
free SSL, a global CDN, private networks, and auto deploys from Git.</li>
</ul>
</li>
<li>
<p><a href="https://coder.com">Coder</a></p>
<ul>
<li>Coder provides an enterprise-grade development environment that allows
developers to code from anywhere.</li>
</ul>
</li>
<li>
<p><a href="https://danbot.host">Danbot Host</a></p>
<ul>
<li>Danbot.Host is a platform which provides hosting for multiple coding languages including static site hosting for free. Also, as stated by them, "We do not limit your resources, you can host as many bots as you want, as many servers as you want, all for free."</li>
</ul>
</li>
<li>
<p><a href="https://solarhosting.cc">Solarhosting</a></p>
<ul>
<li>Solarhosting.cc is a website for Discord bots or any NodeJS/Python applications, It's 24/7 and does not require renewals or a credit card. It has a very generous free plan and support.</li>
</ul>
</li>
<li>
<p><a href="https://www.alwaysdata.com/">Alwaysdata</a></p>
<ul>
<li>Hosts your files, your emails, your sites, your media, your databases, and more. Alwaysdata can be used with almost any server-side framework you desire, with out-of-the-box support for PHP, Python, Ruby on Rails, Ruby Rack, Node.js, Deno, .NET, and Elixir with 100MB of storage for free.</li>
</ul>
</li>
<li>
<p><a href="https://sillydev.co.uk">Silly Development</a></p>
<ul>
<li>SillyDev provides a free 24/7 solution to run and host programs with popular code languages. You can host static sites, as well as node, python and C#.</li>
</ul>
</li>
<li>
<p><a href="https://neocities.org">Neocities</a> (inserted by <a href="https://replit.com/@RixTheTyrunt">@RixTheTyrunt</a>)</p>
<ul>
<li>Neocities is a site that gives you a free place in the internet, letting you to code whatever you want on your site. It gives you a free [account].neocities.org site, but you can pay for a Supporter plan for infinite site creating, custom domains, and just being nice to an overlooked hosting service.</li>
</ul>
</li>
<li>
<p><a href="https://nekoweb.org">Nekoweb</a>, Credits: albumcover</p>
<ul>
<li>
Nekoweb is a free static website hosting service, created in 2024 by a group of coders, programmers and artists, passionate for the old web and personal websites.
</li>
</ul>
</li>
</ol>
<h4>Credit Card Required (Paid)</h4>
<ol>
<li>
<p><a href="https://ionos.com/">Ionos</a></p>
<ul>
<li>Ionos provides nice hosting for 6 dollars a month, but you can pay for an upgrade of 16 dollars to get
unlimited storage and websites.</li>
</ul>
</li>
<li>
<p><a href="https://www.heroku.com/">Heroku</a></p>
<ul>
<li>Heroku is a cloud platform that enables you to deploy, manage, and scale
applications. It supports various programming languages and provides tools for continuous integration and
delivery.</li>
</ul>
</li>
<li>
<p><a href="https://www.digitalocean.com/">Digital Ocean</a></p>
<ul>
<li>Digital Ocean provides cloud services that help businesses deploy, manage, and
scale applications. Their droplets are versatile Linux-based virtual machines.</li>
</ul>
</li>
<li>
<p><a href="https://aws.amazon.com/ec2/">AWS EC2</a></p>
<ul>
<li>Amazon EC2 (Elastic Compute Cloud) is a web service that provides resizable
compute capacity in the cloud, allowing you to run applications on Amazon's computing environment.</li>
</ul>
</li>
<li>
<p><a href="https://www.oracle.com/cloud/">Oracle Cloud</a></p>
<ul>
<li>Oracle Cloud offers a comprehensive suite of cloud services, including
computing power, storage options, and networking capabilities.</li>
</ul>
</li>
<li>
<p><a href="https://fly.io">Fly.io</a>, Credit: bddylol</p>
<ul>
<li>
Fly.io transforms containers into micro-VMs that run on our hardware
in 30+ regions on six continents.*
</li>
</ul>
</li>
<li>
<p><a href="https://datalix.eu">Datalix.eu</a>, Credit: atomic2ds</p>
<ul>
<li>
Datalix is a reliable and stupidly cheap vps and dedicated server provider, based in the eu with servers in Frankfurt, Germany you can pick up a 2vcpu, 4gb ram, 25gb storage, 1TB bandwidth also including 5 backups for just 3 usd a month!
</li>
</ul>
</li>
<li>
<p><a href="https://hop.io/">Hop</a></p>
<ul>
<li>Hop provides an online coding platform that allows you to write, compile, and
run code in various programming languages. It offers a user-friendly interface for programming using VSCode.
</li>
</ul>
</li>
</ol>
</section>
<p>These alternatives offer a range of features for coding, collaboration, deployment, and experimentation, catering
to various development needs and preferences.</p>
<footer>
<p>
Most of list by <a href="https://replit.com/@techwithanirudh">@techwithanirudh</a>, unless credited otherwise.
</p>
</footer>
<hr>
<h3><a href="#community-quotes">Community Quotes</a></h3>
<section id="community-quotes">
<quote>
"I am highly disappointed
I resonate with the concern about introducing premium subscriptions and the potential challenges it may pose for the teen user base. Many of us, being part of this group, may find it challenging to access premium features without relying on our parents’ cards. It would be great if Replit could explore options that allow for free deployment with certain restrictions, making it more inclusive for all users.
Replit should not just throw away its free users. Is it how they will support the next 1 BILLION users ? By forcing them to pay?
We all have no option but to leave replit"
<span>~ prakarsh17-coder(replit)/infinotiver(github)</span>
</quote>
<quote>
"I've already moved a ton of stuff to DigitalOcean. I won't be coming back. I've had chats with team members, and
it's clear that nothing's changing. I'll stay in the community, maybe use it for prototyping, but that's about
it."
<span>~ coding398</span>
</quote>
<quote>
"Whilst Replit may be the most convenient option, you're paying too much for tha convenience and they don't
provide
you with enough customisability of what you pay for."
<span>~ DillonB07</span>
</quote>
<quote>
"The young aspiring developers that made Replit the company it is today ultimately have been abandoned and kicked
to
the curb by the platform with rising costs and and restrictions."
<span>~ zavexeon</span>
</quote>
<quote>
"You will need either money or a ton of cycles to host a site on Replit. Either one could be acquired by your
mom’s
credit card, however you could also get cycles by completing bounties or getting tipped on your Repls."
<span>~ CoderElijah</span>
</quote>
<quote>
"So, what? Replit is just not free anymore? Hosting on Replit was already frustrating enough with the slow speeds
and the sleepy repls, and now you’re just pulling the plug entirely? Wow."
<span>~ wutadamyt</span>
</quote>
<quote>
"I used to use Replit a lot. But now, I can't find myself using it in the near future. I don't like what Replit
has
done to the platform, and I am in the process of switching over to better, cheaper cloud providers."
<span>~ datkat21</span>
</quote>
<quote>
"I was a power-user a little while back. Migration would be hell. I have tons of websites to port over, and it
won't be fun. And that's what <i>was</i> amazing about Replit, you could basically make anything you wanted at any
time, at any rate. It's what kept my motivation super high, Now that motivation has dried up."
<span>~ EnZon3</span>
</quote>
<quote>
"Replit once said that they will bring the next billion software creators
online. Recently they have been doing the opposite. It seems now that
their focus is on the professional and buisness side of things. Especially
with the AI that they are investing so much into."
<span>~ bddylol</span>
</quote>
<quote>
"Well it was fun while it lasted. Replit already had a lot of issues, but this is the final nail in the coffin.
Thats all I have to say."
<span>~ Kurizu</span>
</quote>
<quote>
"We have to pay for repls now... I mean, I usually make a lot of repls but now I have to pay to make each one? We could obviously tell that Replit is literally
greedy that they want to make even repls cost money."
<span>~ Buhron</span>
</quote>
<quote>
"Replit was the best when other companies weren't using it, but now they think that they can push
their actual users, the people that made Replit into.. well Replit, into an erupting volcano because other companies are using it.
I really hate corporate f**ks and now one of my favorite companies is turning into one. I bet Replit's
income is gonna fall at Mach 9 after this sh*t. Goodbye, Replit, and I do NOT thank you."
<span>~ NullClock (Cubic)</span>
</quote>
<quote>
"Replit was the platform for which my coding journey started. It was superior to any rival platform that I knew of. Recently, my Guilded bot which is showcased and acknowledged by Guilded itself hit 500 servers. Looks like the celebration isn't gonna last long as I may have to shut it down after December. Thank you Replit, for the contribution."
<span>~ ServerDeveloper</span>
</quote>
<quote>
"I liked Replit alot, I really did. But I guess companies these days just get to throw their users out like trash. Thanks
alot Replit, have a good downfall."
<span>~ Mixxer (ByteNetwork)</span>
</quote>
<quote>
"Replit used to be a wonderful place with a wonderful community. Now it's dead. I HAD to leave Replit. So many of my projects relied on databases like Sqlite and JSON, which the new Deployments feature doesn't support. Most of my apps and websites have gone down, simply because they didn't give let us use .repl.co domains at least until they had persistent storage support. This, and so many other problems have forced me to leave Replit for the most part."
<span>~ hg0428</span>
</quote>
</section>
<hr>
<h3><a href="#wrapping-up">Wrapping Up</a></h3>
<section id="wrapping-up">
<p>Want to contribute to this site? <a href="https://github.com/codingMASTER398/noreplit.com">Submit a PR</a>!<br>
This is in no way an attack on any of the Replit employees - moreso the pricing & direction.<br>
Want something removed that's yours? Reach out to lachienoble10@outlook.com<br>
Thanks to <a href="https://github.com/codingMASTER398/noreplit.com/graphs/contributors">the many contributors</a> for helping with the website.<br>
<br>
<b>This site was deployed with CloudFlare Pages.</b>
<br>
<br>
Created by <a href="https://coding398.dev">coding398</a>.
</p>
</section>
</body>
</html>