Skip to content

Commit 9f32721

Browse files
author
Willson Mock
committed
Add consistent casing for JavaScript
1 parent 34b474d commit 9f32721

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Introduction
88

9-
webpack is a bundler for modules. The main purpose is to bundle javascript
9+
webpack is a bundler for modules. The main purpose is to bundle JavaScript
1010
files for usage in a browser, yet it is also capable of transforming, bundling,
1111
or packaging just about any resource or asset.
1212

@@ -16,7 +16,7 @@ or packaging just about any resource or asset.
1616
* Bundles both [CommonJs](http://www.commonjs.org/specs/modules/1.0/) and [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules (even combined).
1717
* Can create a single bundle or multiple chunks that are asynchronously loaded at runtime (to reduce initial loading time).
1818
* Dependencies are resolved during compilation reducing the runtime size.
19-
* Loaders can preprocess files while compiling, e.g. coffeescript to javascript, handlebars strings to compiled functions, images to Base64, etc.
19+
* Loaders can preprocess files while compiling, e.g. coffeescript to JavaScript, handlebars strings to compiled functions, images to Base64, etc.
2020
* Highly modular plugin system to do whatever else your application requires.
2121

2222
# Getting Started
@@ -56,7 +56,7 @@ and incredibly **fast** on incremental compilations.
5656
## Loaders
5757

5858
webpack enables use of loaders to preprocess files. This allows you to bundle
59-
**any static resource** way beyond javascript. You can easily [write your own
59+
**any static resource** way beyond JavaScript. You can easily [write your own
6060
loaders](http://webpack.github.io/docs/loaders.html) using node.js.
6161

6262
Loaders are activated by using `loadername!` prefixes in `require()` statements,
@@ -128,7 +128,7 @@ loaded asynchronously at runtime. This reduces the initial loading time.
128128
## Optimizations
129129

130130
webpack can do many optimizations to **reduce the output size of your
131-
javascript** by deduplicating frequently used modules, minifying, and giving
131+
JavaScript** by deduplicating frequently used modules, minifying, and giving
132132
you full control of what is loaded initially and what is loaded at runtime
133133
through code splitting. It can also can make your code chunks **cache
134134
friendly** by using hashes.
@@ -240,7 +240,7 @@ MIT (http://www.opensource.org/licenses/mit-license.php)
240240

241241
(In chronological order)
242242

243-
* @google for [Google Web Toolkit (GWT)](https://code.google.com/p/google-web-toolkit), which aims to compile Java to Javascript. It features a similar [Code Splitting](https://code.google.com/p/google-web-toolkit/wiki/CodeSplitting) as webpack.
243+
* @google for [Google Web Toolkit (GWT)](https://code.google.com/p/google-web-toolkit), which aims to compile Java to JavaScript. It features a similar [Code Splitting](https://code.google.com/p/google-web-toolkit/wiki/CodeSplitting) as webpack.
244244
* @medikoo for [modules-webmake](https://github.com/medikoo/modules-webmake), which is a simlar project. webpack was born because I wanted Code Splitting for modules-webpack. Interestingly the [Code Splitting issue is still open](https://github.com/medikoo/modules-webmake/issues/7) (thanks also to @Phoscur for the discussion).
245245
* @substack for [browserify](http://browserify.org/), which is a similar project and source for many ideas.
246246
* @jrburke for [require.js](http://requirejs.org/), which is a similar project and source for many ideas.

0 commit comments

Comments
 (0)