In the getting started chapter we created a Feathers application in a single file to get a better understanding how Feathers itself works. The Feathers CLI allows us to initialize a new Feathers server with a recommended structure and helps with generating things we commonly need like authentication, a database connection, new services or hooks (more about hooks in a little bit). It can be installed via:
npm install @feathersjs/cli -g
Important: As mentioned when getting ready,
@feathersjs/cli
also requires Node version 10 or later. If you already have it installed,feathers --version
should show4.1.0
or later.
Let's create a new directory for our app and in it, generate a new application:
$ mkdir feathers-chat
$ cd feathers-chat/
$ feathers generate app
First, choose if you want to use JavaScript or TypeScript. When presented with the project name, just hit enter, or enter a name (no spaces). Next, write a short description of your application. All other questions should be confirmed with the default selection by hitting Enter.
Once you confirm the last prompt, the final selection should look like this:
Important: If you are following this guide for the first time we recommend to not change any of those settings other than the TypeScript/JavaScript selection. Otherwise you might run into things that are not covered here.
Let's have a brief look at the files that have been generated:
:::: tabs :options="{ useUrlFragment: false }" ::: tab "JavaScript"
config/
contains the configuration files for the appdefault.json
contains the basic application configurationproduction.json
files overridedefault.json
when in production mode by settingNODE_ENV=production
. For details, see the configuration API documentation
node_modules/
our installed dependencies which are also added in thepackage.json
public/
contains static files to be served. A sample favicon andindex.html
(which will show up when going directly to the server URL) are already included.src/
contains the Feathers server code.hooks/
contains our custom hooksservices/
contains our servicesusers/
is a service that has been generated automatically to allow registering and authenticating usersusers.class.js
is the service classusers.hooks.js
initializes Feathers hooks for this serviceusers.service.js
registers this service on our Feathers application
middleware/
contains any Express middlewaremodels/
contains database model filesusers.model.js
sets up our user collection for NeDB
app.js
configures our Feathers application like we did in the getting started chapterapp.hooks.js
registers hooks that apply to every serviceauthentication.js
sets up Feathers authentication systemchannels.js
sets up Feathers event channelsindex.js
loads and starts the application
test/
contains test files for the app, hooks and servicesservices/
has our service testsusers.test.js
contains some basic tests for theusers
service
app.test.js
tests that the index page appears, as well as 404 errors for HTML pages and JSONauthentication.test.js
includes some tests that basic authentication works
.editorconfig
is an EditorConfig setting to help developers define and maintain consistent coding styles among different editors and IDEs..eslintrc.json
contains defaults for linting your code with ESLint..gitignore
specifies intentionally untracked files which git, GitHub and other similar projects ignore.package.json
contains information about our NodeJS project like its name or dependencies.README.md
has installation and usage instructions ::: ::: tab "TypeScript"config/
contains the configuration files for the appdefault.json
contains the basic application configurationproduction.json
files overridedefault.json
when in production mode by settingNODE_ENV=production
. For details, see the configuration API documentation
node_modules/
our installed dependencies which are also added in thepackage.json
public/
contains static files to be served. A sample favicon andindex.html
(which will show up when going directly to the server URL) are already included.src/
contains the Feathers server code.hooks/
contains our custom hooksservices/
contains our servicesusers/
is a service that has been generated automatically to allow registering and authenticating usersusers.class.ts
is the service classusers.hooks.ts
initializes Feathers hooks for this serviceusers.service.ts
registers this service on our Feathers application
middleware/
contains any Express middlewaremodels/
contains database model filesusers.model.ts
sets up our user collection for NeDB
app.ts
configures our Feathers application like we did in the getting started chapterapp.hooks.ts
registers hooks that apply to every serviceauthentication.ts
sets up Feathers authentication systemchannels.ts
sets up Feathers event channelsdeclarations.ts
contains TypeScript declarations for our appindex.ts
loads and starts the application
test/
contains test files for the app, hooks and servicesservices/
has our service testsusers.test.ts
contains some basic tests for theusers
service
app.test.ts
tests that the index page appears, as well as 404 errors for HTML pages and JSONauthentication.test.ts
includes some tests that basic authentication works
.editorconfig
is an EditorConfig setting to help developers define and maintain consistent coding styles among different editors and IDEs..gitignore
specifies intentionally untracked files which git, GitHub and other similar projects ignore.tsconfig.json
the TypeScript compiler configurationpackage.json
contains information about our NodeJS project like its name or dependencies.README.md
has installation and usage instructions ::: ::::
The most important pattern used in the generated application to split things up into individual files are configure functions which are functions that are exported from a file and take the Feathers app object and then use it to e.g. register services. Those functions are then passed to app.configure.
For example, have a look at the following files:
:::: tabs :options="{ useUrlFragment: false }"
::: tab "JavaScript"
src/services/index.js
looks like this:
const users = require('./users/users.service.js');
// eslint-disable-next-line no-unused-vars
module.exports = function (app) {
app.configure(users);
};
It uses another configure function exported from src/services/users/users.service.js
. The export from src/services/index.js
is in turn used in src/app.js
as:
// ...
const services = require('./services');
// ...
app.configure(authentication);
// Set up our services (see `services/index.js`)
app.configure(services);
// ...
:::
::: tab "TypeScript"
src/services/index.ts
looks like this:
import { Application } from '../declarations';
import users from './users/users.service';
// Don't remove this comment. It's needed to format import lines nicely.
export default function (app: Application) {
app.configure(users);
}
It uses another configure function exported from src/services/users/users.service.ts
. The export from src/services/index.js
is in turn used in src/app.ts
as:
// ...
import services from './services';
// ...
app.configure(authentication);
// Set up our services (see `services/index.js`)
app.configure(services);
// ...
::: ::::
This is how the generator splits things up into separate files and any documentation example that uses the app
object can be used in a configure function. You can create your own files that export a configure function and require
/import
and app.configure
them in app.js
.
Note: Keep in mind that the order in which configure functions are called might matter, e.g. if it is using a service, that service has to be registered first.
The server can now be started by running
npm start
After that, you can see a welcome page at localhost:3030.
The app also comes with a set of basic tests which can be run with
npm test
There is also a handy development command that restarts the server automatically whenever we make a code change:
npm run dev
You can keep this command running throughout the rest of this guide, it will reload all our changes automatically.
In this chapter we installed the Feathers CLI, scaffolded a new Feathers application and learned how it splits things up into separate files. In the next chapter we will learn more about Feathers services and databases.