Chatness โ€” Build chatbots quickly on top of ChatGPT and Firebase

$149 $119.20
1 rating

Chatness is a chat boilerplate engine that can be used as a starting point for any kind of app built on top of ChatGPT. It's a fully functional chat app combining multiple features like auth, private chat, groups, chatbot, profile, settings and more. Chatness is available for web, android and ios.

Find us on ProductHunt


Chatness v2 released

Buy now with a 20% discount and get the most recent version, including Firebase v9 and ChatGPT with gpt-3.5-turbo model

๐Ÿ‘‰๐Ÿ‘‰ Grab your discount here ๐Ÿ‘ˆ๐Ÿ‘ˆ

Demo

Why should I care?

  • You need a versatile and free/cheap go-to server infrastructure to build a chat or any related app, but have no time to make it yourself.
  • You need a chat or related app for your business, but don't want to spend a lot of money developing it from the ground up, or you don't want to pay a monthly fee for a service because what you need is dead simple.
  • You're willing to take a risk at hiring someone to customize a pre-made app for your business, but you also don't have unlimited time and resources to experiment and fail.
  • You want to build a chat or related app, but you don't want to spend a lot of time learning how to build it from scratch by yourself.
  • Maybe you're already working on building something related at your company, but it's not working out as expected and you need to accelerate the process.

If you identify with any of the above, keep reading ๐Ÿ‘‡

About the tech stack

Chatness is built on top of the following technologies:

  • Firebase - Google's infrastructure for Realtime database, authentication, storage, hosting, functions, analytics, crashlytics, remote config, etc.
  • Angular - Google's frontend framework.
  • Ionic - Hybrid components library.
  • Capacitor - Native mobile app runtime by the Ionic creators.
  • ChatGPT - Chatbot framework developed by OpenAI.

Together these technologies provide a very powerful and versatile stack that can be used to build a wide variety of apps, not only chat apps.

Features

โœจ Offline Support

๐ŸŒ™ Light and Dark UI

๐Ÿ’ฌย Chat in Groups

๐Ÿง‘ย Chat in Private

๐Ÿ”Žย Chat Contacts with search

๐Ÿ“„ Chat Pagination

๐Ÿ“ท Take Photos

๐Ÿ“ฑ Select Photos

๐Ÿ“น Add Videos

๐Ÿ—‘๏ธย Message Deletion

๐Ÿ”” App Notifications

โš™๏ธ App Settings

๐Ÿ” Authentication

๐Ÿ” Chatbot


๐Ÿซก Those are real working features, not just a list of buzzwords. You can see them in action in the web demo app or test native functionalities by downloading Chatness from the stores. If something doesn't work as expected, please let me know and I'll fix it as soon as possible and release for free for everyone with a license.

What you'll get

  • A fully functional chat app and code for infrastructure (Push Notifications) that can be used as is, or it can be customized to fit your needs.
  • A dedicated support channel for any questions or issues you may have.
  • Extensive documentation with step-by-step instructions on how to set up the app and infrastructure.
  • A video tutorial on how to set up the app for local development.
  • Future updates and new features for free.

What you won't get

  • A dedicated developer to work on your project.
  • A custom design.
  • A custom feature.
  • A custom backend.
  • A custom infrastructure.
  • A custom app.
  • A custom anything.

Yet, if you need any of the above, you can always hire my company to do it for you ๐Ÿ‘. We're a small team of developers and designers that can help you build your idea from scratch. We're also available for freelance work. Contact me via PM if you're interested.

What you need to know before buying

  • You need to have a basic understanding of how to use the command line.
  • You need to have a basic understanding of how to use Git.
  • You need to have a basic understanding of how to use Firebase.
  • You need to have a basic understanding of how to use Angular.
  • You need to have a basic understanding of how to use Ionic.
  • You need to have a basic understanding of how to use Capacitor.
  • You need to have a basic understanding of how to use TypeScript.
  • You need to have a basic understanding of how to use JavaScript.
  • You need to have a basic understanding of how to use HTML.
  • You need to have a basic understanding of how to use CSS.

App engineering overview

The app is built on top of the following concepts:

  • It must be easy to set up and reuse.
  • It must be easy to customize.
  • It must be easy to maintain.
  • It must be easy to scale.
  • It must be easy to deploy.
  • It must be easy to test.
  • It must be easy to debug.
  • It must be easy to integrate with other apps.
  • It must be easy to integrate with other services.

That said, the project structure is arranged in a way that makes it easy to understand and maintain, and it's also easy to customize and extend. Take a look at the project folder structure below and what they mean.

โ”œโ”€โ”€ src
โ”‚ โ”œโ”€โ”€ app
โ”‚ โ”‚ โ”œโ”€โ”€ actions
โ”‚ โ”‚ โ”œโ”€โ”€ api
โ”‚ โ”‚ โ”œโ”€โ”€ components
โ”‚ โ”‚ โ”œโ”€โ”€ configs
โ”‚ โ”‚ โ”œโ”€โ”€ effects
โ”‚ โ”‚ โ”œโ”€โ”€ guards
โ”‚ โ”‚ โ”œโ”€โ”€ pages
โ”‚ โ”‚ โ”œโ”€โ”€ reducers
โ”‚ โ”‚ โ”œโ”€โ”€ theme
โ”‚ โ”‚ โ”œโ”€โ”€ types

Actions

Plain JavaScript objects that represent an intention to change the state of the application. They contain a type property that describes the type of action being performed and any additional data required to complete the action. Actions are typically created by action creators, which are functions that return an action object.

We use actions on Chatness to dispatch events to the Redux store, which will then update the global state of the application. We don't rely on Angular Services, NGRX, or any other state management system to handle global states. We aim to keep the app as simple as possible, and we don't want to introduce unnecessary complexity.

API

The API folder contains all the external requests being made and is shared across components. Those are "pure functions" that only return data and don't have any side effects. They are responsible for fetching data from external sources, such as Firestore, and returning the data in a format that the application can use. That said, in case you want to use a different API you can easily replace the functions inside this folder.

Components

The components folder contains reusable UI elements that can be used throughout the application. These elements are written as Angular components, which consist of a TypeScript class and an HTML template. We rarely use Angular directives, pipes, or services in our components, and we try to keep all the source code deadly simple in order to make them "portable" to other frameworks if needed.

Configs

The configs folder contains configuration files for the application, such as environment variables, API keys, and other settings that need to be loaded at app runtime.

Effects

Effects are functions that handle side effects in the application. Again not tied to Angular at all, they allow you to perform actions in response to specific events, such as when an action is dispatched, when a component is initialized, the user navigates, or when the user interacts with the UI.

Guards

Guards and routes are the only framework-specific Angular thing used in Chatness. They are used to control access to specific routes or parts of the application based on certain conditions. For example, a guard is used to prevent unauthenticated users from accessing sensitive areas.

Pages

The pages folder contains the main views or screens connected to routes. Each page consists of one or more components.

Reducers

Reducers are pure functions that take the current state of Chatness and the action and return a new state that reflects the changes made by this action. In other words, they are responsible for updating the store in response to actions. We use Redux only to manage the global state of the application, components are still responsible for handling their own local state.

Theme

The theme folder contains stylesheets and other resources related to the visual design of Chatness.

Types

The types folder contains all shared type definitions for various parts of Chatness. These types are used to ensure type safety and catch errors at compile time. We use TypeScript and Angular templates in strict mode to ensure the most type safety possible.

Documentation

๐Ÿ‘‰ https://chatness.app

Support

๐Ÿ‘‰ https://chatness.app/support

Changelog

๐Ÿ‘‰ https://chatness.app/changelog

Demo

20% off will be applied at checkout (Code CHATNESSV2LAUNCH)
I want this!

You'll get app code, documentation, support and free updates for ever.

Angular
15
Ionic
6
Capacitor
3
Tailwind
3
Firebase
9
Size
60.8 MB
Copy product URL

Ratings

5.0
(1 rating)
5 stars
100%
4 stars
0%
3 stars
0%
2 stars
0%
1 star
0%
$149 $119.20

Chatness โ€” Build chatbots quickly on top of ChatGPT and Firebase

1 rating
I want this!