Classical 0.2.18

There is a newer version of this package available.
See the version list below for details.
dotnet add package Classical --version 0.2.18
                    
NuGet\Install-Package Classical -Version 0.2.18
                    
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.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Classical" Version="0.2.18" />
                    
Directory.Packages.props
<PackageReference Include="Classical" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Classical --version 0.2.18
                    
#r "nuget: Classical, 0.2.18"
                    
#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.
#addin nuget:?package=Classical&version=0.2.18
                    
Install as a Cake Addin
#tool nuget:?package=Classical&version=0.2.18
                    
Install as a Cake Tool

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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.3.1 2,008 8/23/2015
0.3.0 1,739 7/18/2015
0.2.19 1,819 2/19/2015
0.2.18 1,629 2/18/2015
0.2.17 1,719 2/18/2015
0.2.16 1,681 2/18/2015
0.2.15 1,776 2/18/2015
0.2.14 1,546 1/28/2015
0.2.13 1,493 1/28/2015
0.2.12 1,547 1/28/2015
0.2.11 1,516 1/28/2015
0.2.10 1,464 1/28/2015
0.2.9 1,489 1/12/2015
0.2.8 1,563 1/12/2015
0.2.7 1,443 1/12/2015
0.2.6 1,561 1/12/2015
0.2.5 1,501 1/12/2015
0.2.4 1,429 1/12/2015
0.2.3 1,501 1/12/2015
0.2.2 1,517 1/12/2015
0.2.1 1,506 1/11/2015
0.2.0 1,490 1/11/2015
0.1.14 1,484 1/8/2015
0.1.13 1,967 12/24/2014
0.1.12 1,770 12/22/2014
0.1.11 1,906 12/21/2014
0.1.10 1,848 12/21/2014
0.1.9 1,897 12/20/2014
0.1.8 1,922 12/20/2014
0.1.7 1,865 12/20/2014
0.1.6 1,891 12/20/2014
0.1.5 2,166 12/19/2014
0.1.4 1,887 12/19/2014
0.1.3 1,810 12/19/2014
0.1.2 1,704 12/16/2014
0.1.1 1,683 12/16/2014
0.1.0 1,807 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
}