reality-loop

Writings about interesting and funny topics in software development and the IT industry in general.

Follow publication

Hidden Features of

Jonas Bandi
reality-loop
Published in
2 min readJan 4, 2019

Initialize with TypeScript

officially supports TypeScript since version 2.1 (as a consequence the fork has been deprecated).

The documentation of nicely describes how to transition from a JavaScript based project to TypeScript.

However if you want to start a new project with TypeScript there is the undocumented command-line argument:

npx create-react-app —typescript my-awesome-project

This is even easier than to create a plain React project and then adding TypeScript later on.

Using

Update 2019–03–30: Using webpack-bundle-analyzer has been deprecated an the flag has been removed in CRA v3. You should be using source-map-explorer instead by running: and .
The following paragraph is deprecated:

webpack-bundle-analyzer is a nice tool to visualize the content of JavaScript bundles/chunks.

In order to use webpack-bundle-analyzer webpack has to be run with the flag . But hides the call and configuration of webpack.

Fortunately you can pass the flag to (the build abstraction of cra) like this:

npm run build -- --stats

This generates the file in the directory, which you then can use with :

npx webpack-bundle-analyzer ./build/bundle-stats-json

This feature is currently undocumented (documentation was removed), because the CRA team thinks the labelling of misleading, see this GitHub issue.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in reality-loop

Writings about interesting and funny topics in software development and the IT industry in general.

Written by Jonas Bandi

I'm an enthusiastic software professional. Find out more about me at http://jonasbandi.net/.

Responses (1)

Write a response