Giter Site home page Giter Site logo

cannot find name 'Deno' about vscode_deno HOT 62 CLOSED

itajaja avatar itajaja commented on May 23, 2024 12
cannot find name 'Deno'

from vscode_deno.

Comments (62)

faeztgh avatar faeztgh commented on May 23, 2024 51

1- Install this extension : here.
2- Ctrl+Shift+P in your working directory.
3- Write this: Deno: Initialize Workspace Configuration.
4- Yes.
5- Yes.

Your welcome.

from vscode_deno.

tsaulic avatar tsaulic commented on May 23, 2024 40

@rshashik
are you sure your settings.json is valid?
for me it works, same versions as you + .vscode/settings.json:
{ "deno.enable": true }

after - restart IDE and it works (for me)

from vscode_deno.

chenguzhen87 avatar chenguzhen87 commented on May 23, 2024 33

you can upgrade
image

from vscode_deno.

spiffytech avatar spiffytech commented on May 23, 2024 18

I had this issue, which was caused by this line in my VS Code settings.json:

"typescript.tsserver.experimental.enableProjectDiagnostics": true

I diagnosed this by starting VS Code with a blank profile (code --user-data-dir=/tmp/vscode .) and seeing that Deno support worked, so I removed lines from my VS Code config until I found the culprit.

This also fixed the error An import path cannot end with a '.ts' extension..

from vscode_deno.

shinebayar-g avatar shinebayar-g commented on May 23, 2024 16

I had this issue, which was caused by this line in my VS Code settings.json:

"typescript.tsserver.experimental.enableProjectDiagnostics": true

I diagnosed this by starting VS Code with a blank profile (code --user-data-dir=/tmp/vscode .) and seeing that Deno support worked, so I removed lines from my VS Code config until I found the culprit.

This also fixed the error An import path cannot end with a '.ts' extension..

For some reason, removing wasn't enough, even it wasn't enabled in User settings. But explicitly disabling it in .vscode/settings.json worked. Maybe we could mention this somewhere in the extension README?

{
    "deno.enable": true,
    "deno.lint": true,
    "editor.formatOnSave": true,
    "[typescript]": {
        "editor.defaultFormatter": "denoland.vscode-deno"
    },
    "typescript.tsserver.experimental.enableProjectDiagnostics": false
}

sorry for the noise.

from vscode_deno.

pierredewilde avatar pierredewilde commented on May 23, 2024 14

If you still have errors like Cannot find name 'Deno'. ts(2304), try the following:

View > Command Palette... > deno: Init > Enable deno lint? Yes

Deno is now set up. You can enable and disable settings (like --unstable) in the .vscode/settings.json file. Before the extension will work you need to reload VS Code.

Click on Reload window

vscode/settings.json will contain:

{
  "deno.enable": true,
  "deno.lint": true,
  "deno.unstable": true
} 

If you still have errors like Could not find module "https://deno.land/..." locally. Deno Language Server(1005), try the following:

View > Command Palette... > deno: Restart Deno Language Server

from vscode_deno.

TTSKarlsson avatar TTSKarlsson commented on May 23, 2024 12

@itajaja , That's the problem, the "new" one is old (1.24.0), and the deprecated is newer (1.34.0). In other words, the extension from denoland doesn't work yet, but the extension from justjavac does, but you'll get a annoying deprecation popup on startup.

from vscode_deno.

o-az avatar o-az commented on May 23, 2024 11

why is it so hard to get deno setup going yikes

from vscode_deno.

stagas avatar stagas commented on May 23, 2024 10

If you are using a custom tsconfig.json with Deno and getting this message, the solution is to add "deno.ns" to lib:

  "compilerOptions": {
    "lib": [
      "esnext",
      "dom",
      "deno.ns"
    ]

from vscode_deno.

kemarheath avatar kemarheath commented on May 23, 2024 9

i had the same issue what worked for me was to press Ctrl+Shit+p in VS Code then Type Deno in the search. And click Deno Initialize workspace

from vscode_deno.

andyvanee avatar andyvanee commented on May 23, 2024 7

you can upgrade
image

I think a number of people misunderstood this comment. It turns out the deprecated deno plugin by justjavac actually has a newer release than the official plugin (this one) - it worked for me.

from vscode_deno.

jerrygreen avatar jerrygreen commented on May 23, 2024 7

I did Ctrl+Shift+P -> Initialize Workspace Configuration, which created me .vscode/settings.json:

{
  "deno.enable": true,
  "deno.lint": true,
  "deno.unstable": false
}

But still the problem occurs:

image

vscode-deno: v3.7.0
deno 1.11.5 (release, x86_64-pc-windows-msvc)
v8 9.1.269.35
typescript 4.3.2

UPD. I created a new issue here: #466

from vscode_deno.

sjc5 avatar sjc5 commented on May 23, 2024 7

I had this issue, which was caused by this line in my VS Code settings.json:
"typescript.tsserver.experimental.enableProjectDiagnostics": true
I diagnosed this by starting VS Code with a blank profile (code --user-data-dir=/tmp/vscode .) and seeing that Deno support worked, so I removed lines from my VS Code config until I found the culprit.
This also fixed the error An import path cannot end with a '.ts' extension..

For some reason, removing wasn't enough, even it wasn't enabled in User settings. But explicitly disabling it in .vscode/settings.json worked. Maybe we could mention this somewhere in the extension README?

{
    "deno.enable": true,
    "deno.lint": true,
    "editor.formatOnSave": true,
    "[typescript]": {
        "editor.defaultFormatter": "denoland.vscode-deno"
    },
    "typescript.tsserver.experimental.enableProjectDiagnostics": false
}

sorry for the noise.

Not noise! This worked for me, worth a try for others. Wow, weird bug.

from vscode_deno.

itajaja avatar itajaja commented on May 23, 2024 6

you can upgrade

no, I am already using the latest version of the right plugin, not the deprecated one

from vscode_deno.

 avatar commented on May 23, 2024 6

Maybe this answer is helpful, configuring Deno types in VS Code.

Currently, this is a working solution for me with the built-in TypeScript version of VS Code 1.45.1. If you need to configure a custom workspace version, there are some more steps to do - take a look at the docs here.

from vscode_deno.

rshashik avatar rshashik commented on May 23, 2024 6

@rshashik restart your ide - what have you tried so far?

  1. installed deno 1.4.6
  2. installed denon v2.4.4
  3. installed denoland.vscode-deno extension in my mac
  4. created .vscode/settings.json file and set "deno.enable": true
  5. created server.ts file
    `import { Application } from "https://deno.land/x/oak/mod.ts";
    import router from "./routes.ts";
    const port = Deno.env.get("PORT") || 5000;

const app = new Application();

app.use(router.routes());
app.use(router.allowedMethods());

console.log(Server running on port ${port});

await app.listen({ port: +port });`

Error in my vscode editor at Deno.env.get("PORT"): Cannot find name 'Deno'.ts(2304)
https://github.com/rshashik/pdr.git

from vscode_deno.

chosa91 avatar chosa91 commented on May 23, 2024 4

Same here...
image

Deno output:

Found deno, version:
deno: 1.0.2
v8: 8.4.300
typescript: 3.9.2

from vscode_deno.

Scionax avatar Scionax commented on May 23, 2024 4

If you are using a custom tsconfig.json with Deno and getting this message, the solution is to add "deno.ns" to lib:

  "compilerOptions": {
    "lib": [
      "esnext",
      "dom",
      "deno.ns"
    ]

I was having the same issue, and this is what actually finally solved it for me. Thank you!

from vscode_deno.

airclovis avatar airclovis commented on May 23, 2024 3

I had the same issue and it looks like when I install the extension from vs marketplace the typescript-deno-plugin version running is v1.29.0 πŸ˜•

I've pulled the repo and build it locally then I've installed the .vsix manually and now it's working and it's running typescript-deno-plugin v1.31.0. Not ideal but it's working (at least for me πŸ˜›)

from vscode_deno.

solarkraft avatar solarkraft commented on May 23, 2024 2

Note that you may have to reinstall the extension to get this fix (I did, even though I newly installed it).

from vscode_deno.

jerrygreen avatar jerrygreen commented on May 23, 2024 2

I encountered this issue as well today.

For me the following two steps fixed it:

  1. press Ctrl+Shift+p and choose 'Deno: Initialize Workspace' to initialize the workspace.
  2. press Ctrl+Shift+p and choose 'Deno: Restart Language Server'.

Also running step 2 was the missing step for me.

Thanks but this doesn't help in my case πŸ˜” It seems there are various reasons why this might happen. In my case it's likely has something to do with OS Windows, but can't say for sure. For those who tried all the hints from here and nothing works, I recommend to proceed / add your details in this new issue, to help investigate the problem: #466

from vscode_deno.

BlackAsLight avatar BlackAsLight commented on May 23, 2024 2

If you are using a custom tsconfig.json with Deno and getting this message, the solution is to add "deno.ns" to lib:

  "compilerOptions": {
    "lib": [
      "esnext",
      "dom",
      "deno.ns"
    ]

You are the true MVP. Everyone else be going in circles.
"Do X. X didn't work. Do X. X didn't work. repeat"

from vscode_deno.

jxjj avatar jxjj commented on May 23, 2024 2

In case it helps anyone else: I had this issue because I disabled the built-in TypeScript and JavaScript Language Features plugin in vscode to use the volar plugin's takeover mode for VueJS development.

Searching @builtin TypeScript and then enabling the TypeScript and JavaScript Language Features plugin solved the issue for me.

from vscode_deno.

towertop avatar towertop commented on May 23, 2024 1

I encounter this issue on the latest VSCode 1.45.1 on Mac. And I just figured out and resolve the problem by upgrade the global tsc to latest 3.9.3 and config VSCode to use that version with "typescript.tsdk".

I guess that was due to the VSCode inline tsc 3.8.3 didn't work well with deno's plugin, while deno's inline one is 3.9.2.

QQ20200601-115435

Checkout this link https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions for the steps.

from vscode_deno.

TTSKarlsson avatar TTSKarlsson commented on May 23, 2024 1

I'm using latest VSCode Insider which also uses latest Typescript 3.9.4, and the denoland version of the extension doesn't work anyway (No import and no Deno namespace, but deno in the status bar). Both deprecated versions of the extension works (justjavac and axetroy).

from vscode_deno.

ry avatar ry commented on May 23, 2024 1

Closed by #77

from vscode_deno.

Moranilt avatar Moranilt commented on May 23, 2024 1

If you still have errors like Cannot find name 'Deno'. ts(2304), try the following:

View > Command Palette... > deno: Init > Enable deno lint? Yes

Deno is now set up. You can enable and disable settings (like --unstable) in the .vscode/settings.json file. Before the extension will work you need to reload VS Code.

Click on Reload window

vscode/settings.json will contain:

{
  "deno.enable": true,
  "deno.lint": true,
  "deno.unstable": true
} 

If you still have errors like Could not find module "https://deno.land/..." locally. Deno Language Server(1005), try the following:

View > Command Palette... > deno: Restart Deno Language Server

It works for me fine. Thank you!

from vscode_deno.

tristantreb avatar tristantreb commented on May 23, 2024 1

I solved this issue by installing and enabling the Deno plugin on VS Code

deno 1.30.2 (release, aarch64-apple-darwin)
v8 10.9.194.5
typescript 4.9.4

from vscode_deno.

bartlomieju avatar bartlomieju commented on May 23, 2024 1

Please open a separate issue about this problem. It requires more investigation. Make sure you are using latest Deno and VSCode extension.

from vscode_deno.

j4tmr avatar j4tmr commented on May 23, 2024 1

Some other situations can also lead to this issue, for example, if you are using the Volar extension. This can cause a conflict with the Deno extension, as Volar, to my knowledge, involves managing TypeScript. The management of TypeScript by both can lead to conflicts, and disabling the Volar extension should resolve the issue.

from vscode_deno.

joshpachner avatar joshpachner commented on May 23, 2024 1

I got the same issue. And i've tried all the recommended solutions.
The weird thing is that it was finding the Deno, and then "randomly" mid coding today it stopped. πŸ€·β€β™‚οΈ
It still runs successfully but VScode is telling me it cant find it and the red lines are driving me crazy lol

But putting
/// <reference lib="deno.ns" />
at the top of my file (index.ts) worked.
Some other github issue talks about how certain libraries have a /// <reference no-default-lib="true"/>
which then throws everything amuck

from vscode_deno.

dgreensp avatar dgreensp commented on May 23, 2024 1

@joshpachner Thank you for pointing out that a TypeScript file seemingly anywhere in your project can cause this. In my case, I think it was an NPM package in Deno's cache, which I keep checked into my repository.

from vscode_deno.

VadimParinov avatar VadimParinov commented on May 23, 2024

Screenshot_41
Screenshot_40
Deno is not found

from vscode_deno.

TTSKarlsson avatar TTSKarlsson commented on May 23, 2024

Yes, this happens to me too, the denoland plugin doesn't work at all while the deprecated justjavac does.

from vscode_deno.

gabrielgrover avatar gabrielgrover commented on May 23, 2024

I am seeing this issue too. I tried all the above solutions to no avail. I don't imagine this is intended behavior.

from vscode_deno.

gabrielgrover avatar gabrielgrover commented on May 23, 2024

you can upgrade
image

I think a number of people misunderstood this comment. It turns out the deprecated deno plugin by justjavac actually has a newer release than the official plugin (this one) - it worked for me.

Not sure I would say that the comment was misunderstood. Seems pretty clear and it should probably be changed? Regardless, this solution worked for me as well

from vscode_deno.

itajaja avatar itajaja commented on May 23, 2024

nope, I have the new one, still deno doesn't work:
image

from vscode_deno.

itajaja avatar itajaja commented on May 23, 2024

I see, thanks for the clarification. well, since this is still the repo for the "new" one, the new one still has this bug that needs to be solved

from vscode_deno.

codematix avatar codematix commented on May 23, 2024

@itajaja , That's the problem, the "new" one is old (1.24.0), and the deprecated is newer (1.34.0). In other words, the extension from denoland doesn't work yet, but the extension from justjavac does, but you'll get a annoying deprecation popup on startup.

So is there an expected timeline for the official plugin to issue an update?

from vscode_deno.

austinrivas avatar austinrivas commented on May 23, 2024

reverting to the deprecated plugin until this issue is resolved

from vscode_deno.

rshashik avatar rshashik commented on May 23, 2024

Im facing the same issue. i installed latest Deno 1.4.6 version and denoland.vscode-deno extension. What is solution to this error??

from vscode_deno.

ebebbington avatar ebebbington commented on May 23, 2024

@rshashik restart your ide - what have you tried so far?

from vscode_deno.

ebebbington avatar ebebbington commented on May 23, 2024

@rshashik did you restart your IDE? Can you check the extension is enabled? Can you check it’s the correct link (click the link in the readme)?

from vscode_deno.

esquevin avatar esquevin commented on May 23, 2024

I'm also encountering this issue.

I can see that the deno extension is doing something, since as soon as I set it to "deno.enable": false in my settings.json I get the An import path cannot end with a '.ts' extension. Consider importing [...] .ts(2691)

But when I set "deno.enable": true those import errors disappear but I still have Cannot find name 'Deno'. Types seems to default to any everywhere, and development is a pain.

The very odd thing is that, sometime, and I've not been able to figure exactly how, through a combination of activating / deactivating the extension, changing code in my project, restarting the TS server, restarting the deno language server, it starts to work properly…

But whenever I leave vscode and come back to the project, its broken again :(

I've tried disabling most of my vscode extensions without success… The issue is there for me, and I think it's a nasty one to figure out if some people never experience it :/

from vscode_deno.

nitowa avatar nitowa commented on May 23, 2024

Same issue as in the OP, plus it doesn't pick up on cached modules.
deno info some_file.ts correctly reports cached dependencies and their respective dependency trees. The scripts also run/bundle/install just as expected.

Deno.something(...) reports Cannot find name 'Deno'.ts(2304)
and
import { some_module } from 'some_url'; reports Could not find module "some_url" locally.Deno Language Server(1005)

Environment (An ubuntu vm basically set up from scratch just to test deno out):
-Fresh ubuntu 20.04.1 installation.
-Fresh VSCode 1.15.1
-Fresh deno installation 1.4.6
-Deno extension 2.3.3

.vscode/settings.json:

{
    "deno.enable": true,
    "deno.unstable": false,
    "editor.formatOnSave": true,
    "editor.formatOnPaste": true,
}

The extension is enabled in VSCode. The deprecated version (justjavac.vscode-deno) does not show the behavior for Deno.something but fails to pick up on the cached modules too.

from vscode_deno.

nitowa avatar nitowa commented on May 23, 2024

Thanks for the answer. Following the instructions, the second half worked great and vscode now correctly reports the modules as known. Unfortunately it is still unaware of the Deno namespace and reports the familiar error. I recorded the steps, just in case, and you can look at the behavior here: https://streamable.com/cz2fkl

Another thing of note is that in tsconfig.json

{
    "compilerOptions": {
        "experimentalDecorators": true,
        "rootDirs": [
            "./src",
            "./tests"
        ]
    }
}

vscode reports
File '$HOME/.cache/deno/lib.deno.unstable.d.ts' not found.ts
which probably is a more suitable hint at the cause here.

from vscode_deno.

pierredewilde avatar pierredewilde commented on May 23, 2024

@nitowa: are you sure Deno is correctly installed ?

$ deno info
DENO_DIR location: "$HOME/.deno"
Remote modules cache: "$HOME/.deno/deps"
TypeScript compiler cache: "$HOME/.deno/gen"

lib.deno.unstable.d.ts should be found in $HOME/.deno, not in $HOME/.cache/deno.
Deno <version> should be showed at lower right of VSCode status bar eg TypeScript 4.1.2 Deno 1.5.4.

Check your $DENO_DIR envvar which should be set to $HOME/.deno

BTW, in your video, there is an Unexpected end of JSON input error, probably in tsconfig.json.

HTH,
Pierre

from vscode_deno.

nitowa avatar nitowa commented on May 23, 2024

The project I'm testing with is pretty much https://github.com/lampewebdev/deno-boilerplate unmodified. Not sure where the unexpected end of JSON came from, but tsconfig.json just reports the error from the previous post (and fwiw is valid json).

deno info yields
DENO_DIR location: "$HOME/snap/deno/15/.cache/deno"
Remote modules cache: "$HOME/snap/deno/15/.cache/deno/deps"
TypeScript compiler cache: "$HOME/snap/deno/15/.cache/deno/gen"

which deno
/snap/bin/deno

deno -V
deno 1.4.6

$DENO_DIR was in fact not set at all, but even after manually setting it, the error persists. Deno was installed via snap

from vscode_deno.

pierredewilde avatar pierredewilde commented on May 23, 2024

Deno (without version) in status bar indicates that deno executable cannot be found in path.
Otherwise, Deno <version> is displayed in status bar.

DENO-DIR is used to locate both lib.deno.d.ts and lib.deno.unstable.d.ts files.
At start, those files will be created automatically.

If Cannot find name 'Deno'. ts(2304) error persists, restart VSCode window.

from vscode_deno.

zanayr avatar zanayr commented on May 23, 2024

i had the same issue what worked for me was to press Ctrl+Shit+p in VS Code then Type Deno in the search. And click Deno Initialize workspace

This worked for me, after 2 hours of searching for a solution. Deno needs to get their extension in order... πŸ™„

from vscode_deno.

kitsonk avatar kitsonk commented on May 23, 2024

i had the same issue what worked for me was to press Ctrl+Shit+p in VS Code then Type Deno in the search. And click Deno Initialize workspace

This worked for me, after 2 hours of searching for a solution. Deno needs to get their extension in order... πŸ™„

The welcome page and instructions make it clear the this needs to be done, as very few people have every TypeScript project be a Deno one. Is there some way we could make these instructions clearer in order to "sort our extension out"?

from vscode_deno.

bbrefeld avatar bbrefeld commented on May 23, 2024

I encountered this issue as well today.

For me the following two steps fixed it:

  1. press Ctrl+Shift+p and choose 'Deno: Initialize Workspace' to initialize the workspace.
  2. press Ctrl+Shift+p and choose 'Deno: Restart Language Server'.

Also running step 2 was the missing step for me.

from vscode_deno.

kitsonk avatar kitsonk commented on May 23, 2024

Seeing a lot of people get tripped up on the deno.ns I opened denoland/deno#15222 which would at least try to provide better information on how to resolve the issue.

from vscode_deno.

browsermage avatar browsermage commented on May 23, 2024

Had the same issue, resolved it by enabling Deno Language Server.

Open settings (⌘ + . / Ctrl + .) and search for Deno:enable and active it either for the workspace or user profile.

from vscode_deno.

shinebayar-g avatar shinebayar-g commented on May 23, 2024

Does it really work?

image

.vscode/settings.json

{
    "deno.enable": true,
    "deno.lint": true,
    "editor.formatOnSave": true,
    "[typescript]": {
        "editor.defaultFormatter": "denoland.vscode-deno"
    }
}

from vscode_deno.

bartlomieju avatar bartlomieju commented on May 23, 2024

Does it really work?

image

.vscode/settings.json

{
    "deno.enable": true,
    "deno.lint": true,
    "editor.formatOnSave": true,
    "[typescript]": {
        "editor.defaultFormatter": "denoland.vscode-deno"
    }
}

Do you have an import map that maps constructs to a fully qualified URL?

from vscode_deno.

shinebayar-g avatar shinebayar-g commented on May 23, 2024

Do you have an import map that maps constructs to a fully qualified URL?

Oh sorry forgot to include deno config file.

deno.jsonc

{
    "imports": {
        "cdk8s": "npm:[email protected]",
        "constructs": "npm:[email protected]"
    },
    "tasks": {
        "dev": "deno run --watch main.ts",
        "build": "deno run --allow-env --allow-write main.ts"
    },
    "fmt": {
        "options": {
            "indentWidth": 4,
            "lineWidth": 100,
            "singleQuote": true
        }
    }
}

deno task build command works and cdk8s yaml file works fine, it's just VSCode complaining :(

Edit: Actually I have another problem. With this import

import { KubeNamespace } from './imports/k8s.ts';

I'm getting the error.

An import path cannot end with a '.ts' extension. Consider importing './imports/k8s' instead.ts(2691)

from vscode_deno.

activenode avatar activenode commented on May 23, 2024

I got the same problem though none of the above worked unfortunately.

from vscode_deno.

j4tmr avatar j4tmr commented on May 23, 2024

I got the same problem though none of the above worked unfortunately.

same

from vscode_deno.

JorensM avatar JorensM commented on May 23, 2024

I got the same issue. And i've tried all the recommended solutions. The weird thing is that it was finding the Deno, and then "randomly" mid coding today it stopped. πŸ€·β€β™‚οΈ It still runs successfully but VScode is telling me it cant find it and the red lines are driving me crazy lol

But putting /// <reference lib="deno.ns" /> at the top of my file (index.ts) worked. Some other github issue talks about how certain libraries have a /// <reference no-default-lib="true"/> which then throws everything amuck

I was having this issue and your suggestion solved it, but I was also getting cannot find name 'console' when doing console.log, which is still there.

from vscode_deno.

cameronraysmith avatar cameronraysmith commented on May 23, 2024

The civet extension for civet produces errors such as typescript(2307) as opposed to ts(2307) that can be difficult to track down in the context of resolving issues like those from the OP and others mentioned in this thread.

from vscode_deno.

anthonyg56 avatar anthonyg56 commented on May 23, 2024

I had this issue, which was caused by this line in my VS Code settings.json:
"typescript.tsserver.experimental.enableProjectDiagnostics": true
I diagnosed this by starting VS Code with a blank profile (code --user-data-dir=/tmp/vscode .) and seeing that Deno support worked, so I removed lines from my VS Code config until I found the culprit.
This also fixed the error An import path cannot end with a '.ts' extension..

For some reason, removing wasn't enough, even it wasn't enabled in User settings. But explicitly disabling it in .vscode/settings.json worked. Maybe we could mention this somewhere in the extension README?

{
    "deno.enable": true,
    "deno.lint": true,
    "editor.formatOnSave": true,
    "[typescript]": {
        "editor.defaultFormatter": "denoland.vscode-deno"
    },
    "typescript.tsserver.experimental.enableProjectDiagnostics": false
}

sorry for the noise.

Not noise! This worked for me, worth a try for others. Wow, weird bug.

This worked for me!

from vscode_deno.

Related Issues (20)

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.