You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: typescript-getting-started/README.md
+11-29
Original file line number
Diff line number
Diff line change
@@ -2,40 +2,29 @@
2
2
3
3
This is an example Firebase project for using
4
4
[TypeScript](https://www.typescriptlang.org/) with
5
-
[Cloud Functions for Firebase](https://firebase.google.com/products/functions)
5
+
[Cloud Functions for Firebase](https://firebase.google.com/products/functions).
6
6
7
7
### Why TypeScript?
8
8
9
-
[TypeScript](https://www.typescriptlang.org/) is a typed superset of JavaScript
10
-
that compiles to plain JavaScript.
9
+
[TypeScript](https://www.typescriptlang.org/) is a typed superset of JavaScript that compiles to plain JavaScript.
11
10
12
-
One of the biggest challenges with developing in JavaScript is that it is
13
-
very easy to write code that has runtime errors. TypeScript enables the fast
14
-
development of JavaScript with optional types. When types are used,
15
-
supported editors provide auto-suggest for methods and properties along
16
-
with syntax highlighting of errors, which speeds development.
11
+
One of the biggest challenges with developing in JavaScript is that it is very easy to write code that has runtime errors. TypeScript enables the fast development of JavaScript with optional types. When types are used, supported editors provide auto-suggest for methods and properties along with syntax highlighting of errors, which speeds development.
17
12
18
-
TypeScript supports targeting different browsers or node.js versions, and optimizes
19
-
the resulting JavaScript. It is much easier to write clean, consistent code
20
-
across a project and development team. TypeScript offers support for the
21
-
latest and evolving JavaScript features like async functions and decorators,
22
-
to help build robust components.
13
+
TypeScript supports targeting different browsers or node.js versions, and optimizes the resulting JavaScript. It is much easier to write clean, consistent code across a project and development team. TypeScript offers support for the latest and evolving JavaScript features like async functions and decorators, to help build robust components.
23
14
24
15
For a nice intro to TypeScript, check out the [TypeScript PlayGround](https://www.typescriptlang.org/play/index.html).
25
16
26
17
### What is different about TypeScript in this example?
27
18
28
-
The TypeScript source is in `functions/src` and these files need to be compiled before deploying (see steps below). The main Cloud Function entry
29
-
point is `src/index.ts` and it compiled to `lib/index.js` which is specified
30
-
in `functions/package.json`.
19
+
The TypeScript source is in `functions/src` and these files need to be compiled before deploying (see steps below). The main Cloud Function entry point is `src/index.ts` and is compiled to `lib/index.js` which is the entry point specified in `functions/package.json`.
31
20
32
-
There are two key differences between the example Cloud Function in Typescript and ES2015:
21
+
There are two key differences between a basic example Cloud Function in Typescript and one in EcmaScript 2015 (which is supported natively in Cloud Functions):
This example has the default sample function. To use this example as a
59
-
starter project:
47
+
This example has the default sample function. To use this example as a starter project:
60
48
61
49
1.`npm install -g firebase-tools`
62
50
3. Create a Firebase Project using the Firebase Developer Console
@@ -70,15 +58,9 @@ starter project:
70
58
npm run deploy
71
59
```
72
60
73
-
Note: with TypeScript you need to build the JavaScript files before
74
-
deploying, so an npm script does this steps. You can see
75
-
that and a few other handy shortcuts in [package.json](functions/package.json).
76
-
Also a pre-deploy trigger ensures that the code is always transpied before deploying. You can see this in the [firebase.json](firebase.json).
61
+
> With TypeScript you need to build the JavaScript files before deploying, so an npm script does this steps. You can see this script and a few other handy shortcuts in [package.json](functions/package.json). Also a pre-deploy trigger ensures that the code is always transpiled before deploying. You can see this in [firebase.json](firebase.json).
77
62
78
-
After the deploy is complete, you will see output with the URL of your
79
-
Cloud Function endpoint. You can test the function with curl. The following
80
-
command will work with any project, since the output of `firebase use` is
81
-
the current project ID:
63
+
After the deploy is complete, you will see the output by sending a request to the URL of your Cloud Function endpoint. You can test the function with curl. The following command will work with any project, since the output of `firebase use` is the current project ID:
0 commit comments