Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated May 3, 2024

Manual installation

To get started with AWS Amplify we recommend that you use our quickstart starter template. However, for some use cases, it may be preferable to start from scratch, either with a brand new directory or an existing frontend app. In that case we recommend to use npm with create-amplify.

Terminal
npm create amplify@latest
Terminal
? Where should we create your project? (.) # press enter

Running this command will scaffold a lightweight Amplify project in your current project with the following files:

1├── amplify/
2│ ├── auth/
3│ │ └── resource.ts
4│ ├── data/
5│ │ └── resource.ts
6│ ├── backend.ts
7│ ├── tsconfig.json
8│ └── package.json
9├── node_modules/
10├── .gitignore
11├── package-lock.json
12├── package.json
13└── tsconfig.json

If needed, you can manually install AWS Amplify without using create-amplify or the starter template. This guide will walk you through how to initialize your project, install dependencies, and author your first backend.

Manual setup

First, if your frontend framework of choice doesn't have it already, create your project's package.json with npm init -y. Then, install the Amplify dependencies for building a backend:

Terminal
npm add --save-dev @aws-amplify/backend@latest @aws-amplify/backend-cli@latest typescript

Note: TypeScript is not a requirement but is recommended for an optimal experience.

Next, create the entry point for your backend, amplify/backend.ts, with the following code:

1import { defineBackend } from '@aws-amplify/backend';
2
3defineBackend({});

Now you can run npx ampx sandbox to create your first backend!

Amplify Gen 2 requires your backend to be configured for use with ECMAScript modules (ESM). If you encounter the following error during ampx sandbox, consider modifying your package.json with "type": "module":

1The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("@aws-amplify/backend")' call instead.

Or, you can create a local file in the Amplify backend directory, amplify/package.json:

1{
2 "type": "module"
3}

You can use define* functions to define your resources. For example, you can define authentication:

amplify/auth/resource.ts
1import { defineAuth } from '@aws-amplify/backend';
2
3export const auth = defineAuth({
4 loginWith: {
5 email: true
6 }
7});

Or define your data resource:

amplify/data/resource.ts
1import { a, defineData, type ClientSchema } from '@aws-amplify/backend';
2
3const schema = a.schema({});
4
5export type Schema = ClientSchema<typeof schema>;
6export const data = defineData({
7 schema
8});

Each of these newly defined resources are then imported and set in the backend definition:

amplify/backend.ts
1import { defineBackend } from '@aws-amplify/backend';
2import { auth } from './auth/resource';
3import { data } from './data/resource';
4
5defineBackend({
6 auth,
7 data
8});

Upgrade existing projects

You can also update an existing frontend app. To upgrade existing Amplify code-first DX (Gen 2) apps, use your Node.js package manager (for example, npm) to update relevant backend packages:

Terminal
npm update @aws-amplify/backend@latest @aws-amplify/backend-cli@latest

Next steps

We recommend the following next steps: