Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

Feathers is a full-stack framework for creating web APIs and real-time applications with TypeScript or JavaScript.

Feathers can interact with any backend technology, supports many databases out of the box and works with any frontend like React, VueJS, Angular, React Native, Android or iOS.
Feathers can interact with any backend technology, supports many databases out of the box and works with any frontend like Angular/React/Vue, Android or iOS.

# Getting started

Expand Down
2 changes: 1 addition & 1 deletion docs/feathers-vs-meteor.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Both Feathers and Meteor are open source real-time JavaScript platforms that pro

Feathers is community supported, whereas Meteor is venture backed and has raised 31.2 million dollars to date.

Meteor only has official support for MongoDB but there are some community modules of various levels of quality that support other databases. Meteor has it's own package manager and package ecosystem. They have their own template engine called Blaze which is based off of Mustache along with their own build system, but also have guides for Angular and React.
Meteor only has official support for MongoDB but there are some community modules of various levels of quality that support other databases. Meteor has it's own package manager and package ecosystem. They have their own template engine called Blaze which is based off of Mustache along with their own build system, but also have guides for Angular/React/Vue.

Feathers has official support for many more databases and supports any front-end framework or view engine that you want by working seamlessly on the client.

Expand Down
6 changes: 3 additions & 3 deletions docs/guides/frameworks.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Frontend Frameworks

Feathers works the same on the server and on the client and is front-end framework agnostic. You can use it with Vue, React, React Native, Angular, or whatever other front-end tech stack you choose.
Feathers works the same on the server and on the client and is front-end framework agnostic. You can use it with Angular/React/Vue or whatever other front-end tech stack you choose.

## Client Side Docs

If you want to learn how to use Feathers as a client in Node.js, React Native, or in the browser with a module loader like Webpack refer to the [client API docs](../api/client.md).
If you want to learn how to use Feathers as a client in Node.js, Angular/React/Vue, or in the browser with a module loader like Webpack refer to the [client API docs](../api/client.md).

## The Feathers chat

Expand All @@ -23,4 +23,4 @@ Beyond the basics, see [this list](https://github.com/feathersjs/awesome-feather

## Framework Integrations

See [this list](https://github.com/feathersjs/awesome-feathersjs#frontend-frameworks) of Feathers front-end framework integrations if you are looking for something that makes Feathers even easier to use with things like React, Vue or others.
See [this list](https://github.com/feathersjs/awesome-feathersjs#frontend-frameworks) of Feathers front-end framework integrations if you are looking for something that makes Feathers even easier to use with things like Angular/React/Vue or others.
2 changes: 1 addition & 1 deletion docs/guides/migrating.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Setting the debugger will apply to all `@feathersjs` modules.
### Client

- The `request` library has been deprecated and request support has been removed from the REST client.
- Since all modern browsers now support built-in [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), the Angular and jQuery REST clients have been removed as well.
- Since all modern browsers now support built-in [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), the jQuery REST clients has been removed as well.
- The `@feathersjs/client` package now only comes with a full (`dist/feathers.js`) and core (`dist/core.js`) browser build. Using Feathers [with a module loader](../api/client.md#module-loaders) is recommended for all other use cases.

### Removed Primus Transport
Expand Down
2 changes: 1 addition & 1 deletion packages/generators/src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const generate = (ctx: AppGeneratorArguments) =>
type: 'confirm',
when: ctx.client === undefined,
message: (answers) => `Generate ${answers.language === 'ts' ? 'end-to-end typed ' : ''}client?`,
suffix: chalk.grey(' Can be used with React, Angular, Vue, React Native, Node.js etc.')
suffix: chalk.grey('Can be used anywhere TypeScript is supported, like Angular/React/Vue, etc')
},
{
type: 'list',
Expand Down