Install and Configure D3 v4

Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 5 years ago

As of version 4, D3 is a completely modular tool, composed of many small libraries. You can use them independently or as a whole, and even create custom builds that include only the parts you need. This lesson will review the options available for installing and using D3, and will set up a local environment for rapid experimentation.

[00:00] The D3 website itself is a fantastic resource when learning the technology. It has literally hundreds of examples that you can look at the source for, and experiment with. It has really, really comprehensive documentation, and of course, it has basic installation instructions, which is what we're interested in here.

[00:18] As you would expect, you can simply include a basic script tag that loads the library from the D3 website, or you can download a ZIP, if you'd rather have it locally. If we look at the installing section of the wiki, we can see that they offer a minimized version and a regular version, as you would expect.

[00:38] They also allow you to simply include the different micro-libraries of D3. In version four, D3 was rewritten to be just a collection of these tiny modules. You can include just the pieces you need when it comes time to really save on file size, and things like that.

[01:02] You do have to be aware that, if you're using these micro-libraries, you have to know what each piece depends on, and make sure you load those things in order. You either need to be careful about that, or use a tool like Rollup to create a custom bundle that will analyze your code, and create a bundle that has exactly what you need, and nothing more.

[01:24] For our purposes, we're just going to use the version that is included on the D3 website. It makes our examples nice and portable. Then we're going to have a script tag in our body that will include our own custom code.

[01:38] That's just in our app.js file within our source directory. Right now, that app.js file is just empty. Now in order to give ourselves a nice, productive dev environment, we're going to install Browsersync from NPM.

[01:53] Through the magic of editing, we'll have that run really quick. Beware that that can sometimes take quite a long time to install. Now that we have that in place, we'll have a dev server that will reload on changes, and we can really iterate quickly.

[02:09] In order to make things completely straightforward, I've created an NPM script of start that just starts up Browsersync. It starts a server, tells it to watch our index.html file and our source directory. That allows us to simply come to our terminal and say npm start. It'll start up everything we need, and it'll actually even open the browser for us.

[02:33] Right now, our browser's empty, because we haven't done anything. Let's come over here, and we'll just write some text to our document body.

[02:41] We'll just write in the D3 version that's loaded. The version of D3 that we're loading from the website creates a global variable called D3 that has the entire library available to us. If we rearrange our windows here a little bit so we can actually see, we do, in fact, get that version number printed out to our browser.

[03:03] It's a little small, so let's maybe wrap it in some header tags. Now we can see that, nice and big, we've got our version number there. You can see that it's updating when we change things. Maybe we want to add a hello from.

[03:19] There we go. It updates. As soon as we save our code, our browser's going to reload so that we can our changes immediately.

Joseph
Joseph
~ 7 years ago

the link for the plunker code is giving me a bad request. The example has no files in it. Is anyone else running into that issue?

https://embed.plnkr.co/github/bclinkinbeard/egghead-d3v4/01-install-and-configure?show=README.md

Ben Clinkinbeard
Ben Clinkinbeardinstructor
~ 7 years ago

Hey Joseph,

Plunker seems to be having periodic issues lately. You can access the code for all the lessons at https://github.com/bclinkinbeard/egghead-d3v4/, and for this lesson specifically at https://github.com/bclinkinbeard/egghead-d3v4/tree/01-install-and-configure.

Ben

Markdown supported.
Become a member to join the discussionEnroll Today