Grow your community and let your products shine!
Register | Login

Company Overview

Wow your users. Build incredible real-time applications in record time.

Tags:

Company Information

Platforms

Pricing

Categories

Features & Specs

  • Real-Time Functionality

    FeathersJS makes it easy to create real-time applications with WebSocket and RESTful APIs. It supports real-time data synchronization, which can be especially useful for interactive applications.

  • Flexibility

    FeathersJS is designed to work seamlessly with a variety of databases and frontend frameworks. This makes it highly flexible for different project requirements.

  • Microservice Ready

    FeathersJS supports modular architecture, which is well-suited for building microservices. Services can be easily scaled and managed independently.

  • Ease of Use

    The framework is designed to be intuitive and easy to use, even for developers who may not have extensive experience with Node.js. It includes built-in authentication and other common features.

  • Extensible

    FeathersJS has a rich ecosystem of plugins and hooks, allowing developers to extend functionality without modifying the core codebase.

  • Good Documentation

    FeathersJS provides well-written and comprehensive documentation, which makes it easier for new developers to get started and for experienced developers to find advanced features.

  • Videos

    External Sources including reviews & comparisons

    Source:
    Source:
    Source:

    Social Recommendations


    • Show HN: Triplit – Open-source syncing database that runs on server and client

      This is just using sqlite under the hood and none of this will scale. Why build your own query builder as well when you could just hook in one of the many ORMs in the NPM ecosystem and add support for 50+ other databases. This also isn’t really something you could drop into an existing project very easily. Overall, I’m not impressed. Here are some other options I prefer: https://feathersjs.com/.

      – Source: Hacker News
      /
      3 months ago


    • Ask HN: Can anyone suggest few open source projects for SaaS Boilerplate?

      For backend this might help https://feathersjs.com. I’m not affiliated with them, just a happy user.

      – Source: Hacker News
      /
      5 months ago


    • Best NodeJS frameworks for seamless backend development

      Feathers.js is a web framework built on top of Express which provides a simple way to develop a scalable and reliable application. Feathers.js supports many databases and works with any frontend technology including iOS, Android, and React Native.

      – Source: dev.to
      /
      11 months ago


    • Choosing a backend API framework

      Feathers.js – fully fledged backend framework, with almost anything out of the box.

      Source:
      over 1 year ago


    • Node.js 20 is now available

      For anything CRUD or that can be modeled as such, I use FeathersJS (https://feathersjs.com/).

      – Source: Hacker News
      /
      over 1 year ago


    • Is there something like Feathersjs for Rust?

      Is there something like Feathers | The API and Real-time Application Framework (feathersjs.com) ?

      Source:
      over 1 year ago


    • Remult: Fullstack typesafe CRUD framework adds zero-boilerplate live queries

      Seams really similar to https://feathersjs.com/ just with less DB’s supported?

      Source:
      over 1 year ago


    • Ask HN: Hunting for a Framework

      Feathers (https://feathersjs.com/) ticks a lot of your boxes.

      – Source: Hacker News
      /
      almost 2 years ago


    • What back end technology to use for a multiplayer game as an experienced front end web developer? Overwhelmed by all the new web dev technology options.

      FeathersJS works pretty well for realtime usecases: https://feathersjs.com/.

      Source:
      almost 2 years ago


    • Feather – Simply beautiful open source icons

      And there I was, thinking for a split-second that Feathers[1] would finally get the recognition it deserves 😉 [1] https://feathersjs.com/.

      – Source: Hacker News
      /
      almost 2 years ago


    • Ask HN: What’s the simplest chat back end I can set up in the next 3 days?

      Elixer does seem tailor made for this sort of thing, but I’ve never used it so I can only recommend you try [feathersjs](https://feathersjs.com/). Setting up a chat backend with it was fairly straightforward, but your mileage may vary as it does force some abstractions that you may not want.

      – Source: Hacker News
      /
      about 2 years ago


    • Preferred Node backend framework for TS?

      NestJs ‘s typescript support is just stellar since it is a pure typescript project from the ground up.

      Some missing frameworks in your list

      – Hapi

      feathers

      – adonisJs

      – sailsjs (something about this framework never ticked, typescript is a clear after thought compared to the others in the list).

      Source:
      about 2 years ago


    • Build Your Own Web Framework

      Im building with featherjs[0] right now and I love it. Jwt, user handling, routing, and (most notably to me) real-time functionality is all built in. Probably the most rails-like backend framework I’ve worked with in Node so far. [0] https://feathersjs.com/.

      – Source: Hacker News
      /
      about 2 years ago


    • hi… i really need help with good examples of a simple register login update and logout system using nodejs mongodb

      You might take a look at a framework that already includes user authentication like Feathers.js. The Getting Started Guide walks you through creating a simple real-time chat app with user authentication. And the final chat app code is on GitHub here.

      Source:
      about 2 years ago


    • Why use express over JSON-server?

      You’re right, using express requires that you to write a lot of code to get the same functionality as json-server because express is library to build web servers, but it’s more flexible and powerful than json-server, so express is quiet popular to build REST API with node, also you can search for more framework-like projects to build API with node.js like Nest.js, Feathers, Adonis or something more user-friendly…

      Source:
      about 2 years ago


    • Anyone have design advice for this scenario

      Overall, your idea is pretty reasonable. You might consider using something like Feathers.js for your API/backend that provides some higher level messaging on top of WebSockets. That will take care of some of those lower-level details for you. In Feathers, your user would just subscribe to a named channel and your back end would post a message to the channel when something completes and then user would receive it….

      Source:
      about 2 years ago


    • Using Node.js and AWS to build/deploy a login system, how should I do this?

      The main ones I’ve used are Feathers.js, NestJS and KeystoneJS. I’ve used Feathers more and it comes set up with user authentication pretty much out of the box. Keystone also comes with user auth already set up, but is GraphQL only. (Feathers and Nest can do either REST or GraphQL.).

      Source:
      over 2 years ago


    • Please stop calling it “magic”

      > in fact we all use metaprogramming on a regular basis No, I write Go code. Everything is very explicit. Magic is not derogatory; it simply denotes that often the developer using such constructs does not fully understand the implications. A prime example of this is Feathers[1], a node framework that manages to be insecure by default to enable fast prototyping. I’ve seen swiss cheese results of using it more often…

      – Source: Hacker News
      /
      over 2 years ago


    • Building a REST API with Feathers.js and SQLite

      Feathers is a lightweight web framework for developing real-time apps and REST APIs in JavaScript or TypeScript.

      – Source: dev.to
      /
      over 2 years ago


    • How to Secure your NodeJs Express Javascript Application – part 2

      Bonus: Another example of unwanted routes are default routes like those available in Sails and Feathers. Fortunately Express only has a default error and 404 handlers which we will cover in the following section.

      – Source: dev.to
      /
      over 2 years ago


    • Ask HN: Easiest way to build a CRUD app

      Depends on what you’re aiming for. For an API that will not be very flexible, its https://strapi.io/ may be good. https://feathersjs.com/ is good if you’re looking for something flexible. If you are looking for more flexibility, you should write from scratch.

      – Source: Hacker News
      /
      over 2 years ago

    Similar Products

    AutoCAD mobile app, formerly AutoCAD 360 and AutoCAD WS, is a CAD viewer for viewing, creating, editing, and sharing AutoCAD drawings. Download a free AutoCAD mobile app trial for Windows 10, iOS, or Android.
    Web-based project collaboration tool.
    Bforartists is a fork of Blender.
    Cloud-based software application for consulting firms (and students) with all the tools required in...