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:
npminstall @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 show 4.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:
config/ contains the configuration files for the app
default.json contains the basic application configuration
production.json files override default.json when in production mode by setting NODE_ENV=production. For details, see the configuration API documentation
node_modules/ our installed dependencies which are also added in the package.json
public/ contains static files to be served. A sample favicon and index.html (which will show up when going directly to the server URL) are already included.
test/ contains test files for the app, hooks and services
services/ has our service tests
users.test.js contains some basic tests for the users service
app.test.js tests that the index page appears, as well as 404 errors for HTML pages and JSON
authentication.test.js includes some tests that basic authentication works
.editorconfig is an EditorConfig(opens new window) setting to help developers define and maintain consistent coding styles among different editors and IDEs.
config/ contains the configuration files for the app
default.json contains the basic application configuration
production.json files override default.json when in production mode by setting NODE_ENV=production. For details, see the configuration API documentation
node_modules/ our installed dependencies which are also added in the package.json
public/ contains static files to be served. A sample favicon and index.html (which will show up when going directly to the server URL) are already included.
declarations.ts contains TypeScript declarations for our app
index.ts loads and starts the application
test/ contains test files for the app, hooks and services
services/ has our service tests
users.test.ts contains some basic tests for the users service
app.test.ts tests that the index page appears, as well as 404 errors for HTML pages and JSON
authentication.test.ts includes some tests that basic authentication works
.editorconfig is an EditorConfig(opens new window) setting to help developers define and maintain consistent coding styles among different editors and IDEs.
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(opens new window) and then use it to e.g. register services. Those functions are then passed to app.configure(opens new window).
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);// ...
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.exportdefaultfunction(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.
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.