Classical 0.1.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package Classical --version 0.1.8
NuGet\Install-Package Classical -Version 0.1.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Classical" Version="0.1.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Classical --version 0.1.8
#r "nuget: Classical, 0.1.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Classical as a Cake Addin
#addin nuget:?package=Classical&version=0.1.8

// Install Classical as a Cake Tool
#tool nuget:?package=Classical&version=0.1.8

A TypeScript Base Class Library.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.19 169 2/19/2015
0.2.18 59 2/18/2015
0.2.17 51 2/18/2015
0.2.16 54 2/18/2015
0.2.15 48 2/18/2015
0.2.14 71 1/28/2015
0.2.13 51 1/28/2015
0.2.12 55 1/28/2015
0.2.11 49 1/28/2015
0.2.10 56 1/28/2015
0.2.9 72 1/12/2015
0.2.8 54 1/12/2015
0.2.7 57 1/12/2015
0.2.6 55 1/12/2015
0.2.5 60 1/12/2015
0.2.4 55 1/12/2015
0.2.3 54 1/12/2015
0.2.2 51 1/12/2015
0.2.1 63 1/11/2015
0.2.0 54 1/11/2015
0.1.14 61 1/8/2015
0.1.13 68 12/24/2014
0.1.12 63 12/22/2014
0.1.11 65 12/21/2014
0.1.10 64 12/21/2014
0.1.9 62 12/20/2014
0.1.8 60 12/20/2014
0.1.7 58 12/20/2014
0.1.6 56 12/20/2014
0.1.5 80 12/19/2014
0.1.4 63 12/19/2014
0.1.3 60 12/19/2014
0.1.2 63 12/16/2014
0.1.1 59 12/16/2014
0.1.0 63 12/16/2014

- The Watch.js polyfill was added to classical.js.
- The MutationObserver.js polyfill was added to classical.js
- JsMin was used to minify classical.js
- Added Intro.ts for getting started
- Added a minified version of classical.js: classical.min.js
- Added two methods to the Type class in Reflection
 - getFieldsOf
 - getFieldOf
- All tests continue to pass

//Write your first few lines of Classical.js
module Classical.Introduction {

   import Assert = Classical.Assert;
   import Expression = Classical.Expression;
   import u = Utilities;
   import r = Classical.Reflection;
   import e = Classical.Events;
   import b = Classical.Binding;
   import cc = Classical.Collections;
   import bc = Classical.Binding.Collections;

   //Explore each module in Classical.js using intellisense
}