Git Product home page Git Product logo

flutter-deno-sample-app's Introduction

DENO INSTALLATION AND SETUP

Command Line Installation Setup

Using Shell (macOS and Linux):

curl -fsSL https://deno.land/x/install/install.sh | sh

Using PowerShell (Windows):

iwr https://deno.land/x/install/install.ps1 -useb | iex

Using Scoop (Windows):

scoop install deno

Using Chocolatey (Windows):

choco install deno

Using Homebrew (macOS):

brew install deno

Using Cargo (Windows, macOS, Linux):

cargo install deno

Direct Download

Deno binaries can also be installed manually, by downloading a zip file at

After installation check in your command line using

deno --version

Check whether you get the following output :

deno 1.0.0
v8 8.4.300
typescript 3.9.2

If you want to download Typescript manually (Optional)

npm install -g typescript

Make sure you have npm library installed for the above code to run

Deno Basic Commands

  • deno --version - For checking the version of Deno
  • deno help - For Deno related help and actions
  • deno run - To run the Deno code and make the server up

Use this extension for VSCode only

Quicklinks

Update Dependencies

In order to reload a module or all modules you have to use: --reload

For that module specifically:

deno run --reload=https://deno.land/std/http/server.ts index.js

or just use --reload without any value to reload all modules:

deno run --reload index.js

You can even select a couple of modules if you pass comma separated modules to --reload

deno run --reload=module1,moduleN index.js

Or reload all std modules

deno run --reload=https://deno.land/std index.js

You can use deno cache instead of deno run too. The former will just download the dependencies, while the former download & run the script.

flutter-deno-sample-app's People

Contributors

devanandp avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.