Classical 0.1.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Classical --version 0.1.5
                    
NuGet\Install-Package Classical -Version 0.1.5
                    
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.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Classical" Version="0.1.5" />
                    
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.1.5
                    
#r "nuget: Classical, 0.1.5"
                    
#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.
#:package Classical@0.1.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Classical&version=0.1.5
                    
Install as a Cake Addin
#tool nuget:?package=Classical&version=0.1.5
                    
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,153 8/23/2015
0.3.0 1,927 7/18/2015
0.2.19 1,954 2/19/2015
0.2.18 1,768 2/18/2015
0.2.17 1,856 2/18/2015
0.2.16 1,815 2/18/2015
0.2.15 1,904 2/18/2015
0.2.14 1,680 1/28/2015
0.2.13 1,622 1/28/2015
0.2.12 1,675 1/28/2015
0.2.11 1,649 1/28/2015
0.2.10 1,598 1/28/2015
0.2.9 1,618 1/12/2015
0.2.8 1,701 1/12/2015
0.2.7 1,575 1/12/2015
0.2.6 1,692 1/12/2015
0.2.5 1,632 1/12/2015
0.2.4 1,557 1/12/2015
0.2.3 1,638 1/12/2015
0.2.2 1,655 1/12/2015
0.2.1 1,649 1/11/2015
0.2.0 1,619 1/11/2015
0.1.14 1,612 1/8/2015
0.1.13 2,099 12/24/2014
0.1.12 1,909 12/22/2014
0.1.11 2,044 12/21/2014
0.1.10 1,980 12/21/2014
0.1.9 2,038 12/20/2014
0.1.8 2,053 12/20/2014
0.1.7 2,003 12/20/2014
0.1.6 2,020 12/20/2014
0.1.5 2,365 12/19/2014
0.1.4 2,016 12/19/2014
0.1.3 1,938 12/19/2014
0.1.2 1,840 12/16/2014
0.1.1 1,817 12/16/2014
0.1.0 1,936 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
- 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
}