how to resume/continue making the existing project after the PC shuts down?

How to resume/continue making the existing project after the PC shuts down?
what expo cammand should I use?
it’s because after turning on my laptop and open cmd, it is empty, and the project in my expo account won’t run. I tried expo --help but I was unable to understand the commands especially what to put in [options]. I hope someone can teach me a few tricks in this because I am just start learning react native.

Expo CLI 3.11.9 environment info:
System:
OS: Windows 10
Binaries:
npm: 6.13.6 - C:\Program Files\nodejs\npm.CMD
IDEs:
Android Studio: Version 3.5.0.0 AI-191.8026.42.35.6010548

Hi

To start the development server you will first need to change to the directory containing your project and then type:

expo start

This will allow you to connect with the Expo app.

e.g. let’s assume that when you open the CMD window you are in the C:\Users\trabungko> directory and that you previously ran expo init in this directory to create an app in a subdirectory called my-app.

In that case you should:

C:\Users\trabungko>cd my-app
C:\Users\trabungko\my-app>expo start
1 Like

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.