Skip to content

Commit 3f4b76b

Browse files
Some tweaks on typescript-getting-started/README.md
1 parent c03d0de commit 3f4b76b

File tree

1 file changed

+11
-29
lines changed

1 file changed

+11
-29
lines changed

typescript-getting-started/README.md

+11-29
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,29 @@
22

33
This is an example Firebase project for using
44
[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).
66

77
### Why TypeScript?
88

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.
1110

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.
1712

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.
2314

2415
For a nice intro to TypeScript, check out the [TypeScript PlayGround](https://www.typescriptlang.org/play/index.html).
2516

2617
### What is different about TypeScript in this example?
2718

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`.
3120

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):
3322

3423
* `require` -> `import`
3524
* `exports.` -> `export const`
3625

3726
JavaScript:
38-
```
27+
```js
3928
const functions = require('firebase-functions');
4029

4130
exports.helloWorld = functions.https.onRequest((request, response) => {
@@ -44,7 +33,7 @@ exports.helloWorld = functions.https.onRequest((request, response) => {
4433
```
4534

4635
TypeScript:
47-
```
36+
```js
4837
import * as functions from 'firebase-functions'
4938

5039
export const helloWorld = functions.https.onRequest((request, response) => {
@@ -55,8 +44,7 @@ export const helloWorld = functions.https.onRequest((request, response) => {
5544

5645
### Project Setup
5746

58-
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:
6048

6149
1. `npm install -g firebase-tools`
6250
3. Create a Firebase Project using the Firebase Developer Console
@@ -70,15 +58,9 @@ starter project:
7058
npm run deploy
7159
```
7260

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).
7762
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:
8264
```
8365
curl https://us-central1-$(firebase use).cloudfunctions.net/helloWorld
8466
```

0 commit comments

Comments
 (0)