• Complain

Lynn Beighley - Jumpstarting JavaScript

Here you can read online Lynn Beighley - Jumpstarting JavaScript full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2017, publisher: Maker Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Lynn Beighley Jumpstarting JavaScript
  • Book:
    Jumpstarting JavaScript
  • Author:
  • Publisher:
    Maker Media
  • Genre:
  • Year:
    2017
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Jumpstarting JavaScript: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Jumpstarting JavaScript" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

All Make Jumpstart books provide a quick way for readers to jumpstart their knowledge of a certain topic. In 50 intense pages, Jumpstarting javascript shows makers how to install the Node.js environment on a Raspberry Pi, how to use Node.js to turn their Raspberry Pi into a self-contained web server, and how to get that web server to send a tweet.

Lynn Beighley: author's other books


Who wrote Jumpstarting JavaScript? Find out the surname, the name of the author of the book and a list of all author's works by series.

Jumpstarting JavaScript — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Jumpstarting JavaScript" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Copyright 2017 Lynn Beighley All rights reserved Published by Maker Media - photo 1

Copyright 2017 Lynn Beighley. All rights reserved.

Published by

Maker Media, Inc.

1700 Montgomery Street, Suite 240

San Francisco, CA 94111

Maker Media books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (safaribooksonline.com). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com.

Publisher: Roger Stewart

Editor: Patrick DiJusto

Copy Editor: Elizabeth Welch, Happenstance Type-O-Rama

Proofreader: Scout Festa, Happenstance Type-O-Rama

Interior Designer and Compositor: Maureen Forys, Happenstance Type-O-Rama

Cover Designer: Maureen Forys, Happenstance Type-O-Rama

December 2017: First Edition

Revision History for the First Edition

2017-12-13 First Release

See oreilly.com/catalog/errata.csp?isbn=9781680454239 for release details.

Make:, Maker Shed, and Maker Faire are registered trademarks of Maker Media, Inc. The Maker Media logo is a trademark of Maker Media, Inc. Jumpstarting JavaScript and related trade dress are trademarks of Maker Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and Maker Media, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. While the publisher and the author have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

978-1-68045-423-9

Safari Books Online

Safari Books Online is an on-demand digital library that delivers expert content in both book and video form from the worlds leading authors in technology and business. Technology professionals, software developers, web designers, and business and creative professionals use Safari Books Online as their primary resource for research, problem solving, learning, and certification training. Safari Books Online offers a range of plans and pricing for enterprise, government, education, and individuals. Members have access to thousands of books, training videos, and prepublication manuscripts in one fully searchable database from publishers like OReilly Media, Prentice Hall Professional, Addison-Wesley Professional, Microsoft Press, Sams, Que, Peachpit Press, Focal Press, Cisco Press, John Wiley & Sons, Syngress, Morgan Kaufmann, IBM Redbooks, Packt, Adobe Press, FT Press, Apress, Manning, New Riders, McGraw-Hill, Jones & Bartlett, Course Technology, and hundreds more. For more information about Safari Books Online, please visit us online.

How to Contact Us

Please address comments and questions to the publisher:

Maker Media, Inc.

1700 Montgomery Street, Suite 240

San Francisco, CA 94111

You can send comments and questions to us by email at books@makermedia.com.

Maker Media unites, inspires, informs, and entertains a growing community of resourceful people who undertake amazing projects in their backyards, basements, and garages. Maker Media celebrates your right to tweak, hack, and bend any Technology to your will. The Maker Media audience continues to be a growing culture and community that believes in bettering ourselves, our environment, our educational systemour entire world. This is much more than an audience, its a worldwide movement that Maker Media is leading. We call it the Maker Movement.

To learn more about Make: visit us at makezine.com. You can learn more about the company at the following websites:

Maker Media: makermedia.com

Maker Faire: makerfaire.com

Maker Shed: makershed.com

Maker Share: makershare.com

Preface: What Is Node.js?

J avaScript is a programming language that web browsers can run. Browsers like Firefox and Chrome are built with engines that can understand and execute programs written in the JavaScript language. Firefox has an engine called SpiderMonkey, and Chromes engine is called V8.

Running JavaScript in a browser limits what you can do with it. For example, with JavaScript in a browser, you are limited to interacting with web pages. You can detect errors when people enter information in a form. You can open browser windows and alert boxes. But you cant control anything outside of a browser.

Fortunately, you have another option. When you install and use the JavaScript extension Node.js, your JavaScript code can run independently of a web browser. (Youll often see Node.js simply called Node, and thats what well do for the rest of this book.)

Node is the V8 JavaScript engine bundled together with libraries that handle input/output and networking. This means that Node lets you use JavaScript outside of a browser to run shell scripts, manage back-end services, and run directly on devices.

What You Bring to the Book

  • Basic familiarity with programming concepts
  • Ability to set up and connect a Raspberry Pi
  • Ability to access and use a console
  • Understanding of sudo, directories, and file creation/editing
Chapter 1
Meet JavaScript and Node.js!
T his chapter takes you through the steps to install Node on your Mac Windows - photo 2

T his chapter takes you through the steps to install Node on your Mac, Windows, or Linux OS. Then youll check to see that its working.


NOTE

As you install Node, you may notice that something called npm is also being installed. This program is the Node Package Manager.

Node is really popular, and it has a whole new ecosystem of useful Node-based code packages other developers have created for you to use. When you want to use one of these packages in Node, you need an easy way to install and manage them. Thats what npm does for youit installs additional Node packages you want to use.


Follow the instructions for your system then jump to the last section, Node Is Installed Now What?

Install Node on Mac

Although you could build Node from the source code, this guide is all about getting you going quickly. The easy way is to visit the official Node website, Nodejs.org, and use an automated installer. Here are the steps involved:

Step 1. Visit ).

Nodejsorg download page Step 2 Find the file you downloaded and double-click - photo 3

Nodejs.org download page

Step 2. Find the file you downloaded and double-click it. Youll see the installation dialog (). Click Continue to go through the installation. Stick with the default settings.

Step 3. When the installation finishes, youll see a summary screen with installation information ().

Node installer Node installer summary Step 4 You need to make sure that - photo 4

Node installer

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Jumpstarting JavaScript»

Look at similar books to Jumpstarting JavaScript. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Jumpstarting JavaScript»

Discussion, reviews of the book Jumpstarting JavaScript and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.