Classical 0.2.19

dotnet add package Classical --version 0.2.19
NuGet\Install-Package Classical -Version 0.2.19
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.2.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Classical --version 0.2.19
#r "nuget: Classical, 0.2.19"
#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.2.19

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

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

- Added support for node.js and io.js by handling the reference to the global object.
- Added a preview of the classical.html module which has statically typed DOM manipulation and POJO binding built in
- Added a new introductory tutorial explaining the theory behind classical.
- Added JsDoc comments for modules, interface and classes which will serve as Visual Studio tooltips
- Updated the Classical logo
- Minor bug fixes

//After getting started using Introduction.js
//write your first few lines of Classical.js using this template
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 of the modules above using intellisense
}