Software Alternatives, Accelerators & Startups
Table of contents
  1. Social Mentions
  2. Comments

Fresh Framework

Fresh is a next generation web framework, built for speed, reliability, and simplicity.

Fresh Framework Reviews and details

Screenshots and images

  • Fresh Framework Landing page
    Landing page //
    2023-09-30

Badges

Promote Fresh Framework. You can add any of these badges on your website.
SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Fresh Framework and what they use it for.
  • What's Your Favorite Tech Stack and Why?
    Deno: Deno with one of it's frameworks (like Fresh. - Source: dev.to / 2 months ago
  • Fly.it Has GPUs Now
    Because I have secret magical powers that you probably don't, it's basically free for me. Here's the breakdown though: The application server uses Deno and Fresh (https://fresh.deno.dev) and requires a shared-1x CPU at 512 MB of ram. That's $3.19 per month as-is. It also uses 2GB of disk volume, which would cost $0.30 per month. As far as post generation goes: when I first set it up it used GPT-3.5 Turbo to... - Source: Hacker News / 4 months ago
  • Deno in 2023
    Deno has also created a Next.js competitor, Fresh. I found it a few weeks ago and am starting to go through the docs, looks like a good overall concept. https://fresh.deno.dev/. - Source: Hacker News / 4 months ago
  • We need an official backend web framework
    Https://fresh.deno.dev/ - Fresh embraces the tried and true design of server side rendering and progressive enhancement on the client side. Source: 6 months ago
  • Hacktoberfest 2023 Recap
    Along the way, I not only got the oppurtunity to revise old concepts that had blurred in my memory, but also learnt about new technologies like Fresh.js, a framework from Deno (a js runtime engine) that uses Preact, a React Routing library and used Chakra UI for the first time. - Source: dev.to / 7 months ago
  • Why Can't I Just Use This Function? The Struggles with Code Reusability in JS
    A whole project might be released as a server or framework. Frameworks like fresh, and astro) both have had things deep within them that I've wanted to reuse, within fresh it's the esbuild configuration, and islands functionality, and within astro it's the rendering of astro files themselves. - Source: dev.to / 7 months ago
  • JavaScript First, Then TypeScript
    The Fresh framework by Deno cited an improved developer experience due to tighter feedback loops. - Source: dev.to / 8 months ago
  • Framework Interoperable Component Libraries Using Lit Web Components.
    I've thought about this a lot while using other frameworks like Deno Fresh which uses Preact under the hood, mainly for JSX templating, but also for islands functionality. Within that framework you can't really use React component libraries. You start to think more about generating static HTML like this example from the Deno blog [A Whole Website in a Single JavaScript File,... - Source: dev.to / 8 months ago
  • Next.js, Just Why?
    Https://fresh.deno.dev/ Deno supports importing node modules now so you can import whatever dependency you desire. I even used browser imports on the server, it's so flexible. Island based hydration is a great idea and it's a super productive framework to use. Fresh uses Preact, I spent the last few months using it and I never caught myself fighting with the framework, unlike nextjs where it's a constant struggle. - Source: Hacker News / 9 months ago
  • Node.js vs. Deno vs. Bun: JavaScript runtime comparison
    Deno also has a tooling ecosystem around it to enable developers to jumpstart their projects. Fresh is a web framework built for Deno and Lume is their static site generator. - Source: dev.to / 9 months ago
  • Deno 1.35: A fast and convenient way to build web servers
    > Have you seen the horrible mess of web development caused by JS platform taking over backend and mb of js files just to write a text to a DOM element? Deno is one of the pioneering projects (via https://fresh.deno.dev/) pushing SSR to the maximum so we don't need MBs to render DOM elements... Unless you know, you want any sort of interactivity which every single client-facing SaaS app ends up needing (for... - Source: Hacker News / 11 months ago
  • Looking to hire UX/UI designer
    Please don't torture your developers with php, I recommend fresh https://fresh.deno.dev/ 😸 built reiya with it and its by far the best way to do no-shipped-js development. Source: 12 months ago
  • Next.js App Router Update
    Have you considered Deno? First class TypeScript support, secure sandboxing, and JIT rendering for React/Preact style projects with Fresh (https://fresh.deno.dev). Also, they recently introduced a Node compatibility feature that supports _most_ modules. You can import directly from NPM using the npm: specifier, or import (almost) all of the builtin Node APIs using the standard node: specifier. Since recent... - Source: Hacker News / 12 months ago
  • Full-stack Web Apps Without React
    Fresh is a full-stack framework created by Deno that also ships no JavaScript to the client by default (a theme across all the tools so far) that supports server-side rendering. It released version 1.1 back in September. - Source: dev.to / about 1 year ago
  • Components, hooks, and plugins for Preact and Fresh.
    I am currently working on a project that uses Fresh and Deno on frontend. In the process, I've got a library of hooks & components that could be useful for developers who use Preact in their projects. At the time only Deno is supported, npm builds are in plans. Source: about 1 year ago
  • WordPlate: WordPress on Composer with sensible defaults
    Best of luck on your cms - I must admit I think the future lies with something like deno/fresh (https://fresh.deno.dev) or astro (https://astro.build) along with cdn/edge computing. > Recently I spun up a site for a client and the plug-ins cost over $1000 just to get them going. I think that's the wrong way around - you/your client could buy stuff costing a thousand dollars because of the huge wp ecosystem... - Source: Hacker News / over 1 year ago
  • Deno 1.31: package.json support, Stabilization of Node-API
    There is actually Fresh but not sure if it helped adoption. Source: over 1 year ago
  • <3 Deno
    Developed using Fresh framework (https://fresh.deno.dev) and deployed to Deno Deploy (https://deno.com/deploy). For persistent storage I use a simple MySQL instance from DigitalOcean. - Source: Hacker News / over 1 year ago
  • <3 Deno
    I recently built a full-stack app with Deno (and their Fresh framework https://fresh.deno.dev) called Invo (https://invo.ee) and the whole experience was delightful. I was able to move really fast and I never had to touch a configuration file, which also immensely helped with my motivation of actually building something - far too often I get stuck in a pile of config (I do Clojure mostly) and lose any motivation I... - Source: Hacker News / over 1 year ago
  • Fast ways to build a static landing page with TS, Tailwind
    I really liked the ease of https://fresh.deno.dev/ and https://deno.com/deploy. Just went through the getting started guide and it was basically 'run these two commands and log in here'. But I already know react, so if that's an issue maybe choose something else. Source: over 1 year ago
  • Server side rendering is now good idea?
    Always has been. I think that you do need interactivity through JavaScript at some point. And I find react easier to maintain than an HTML/JS soup generated by PHP, JSP, or RoR. I would take a look at https://fresh.deno.dev/ or https://kit.svelte.dev/ or https://nextjs.org/. - Source: Hacker News / over 1 year ago

Do you know an article comparing Fresh Framework to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Fresh Framework discussion

Log in or Post with

This is an informative page about Fresh Framework. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.