Downloads:
201,116
Downloads of v 0.0.1-beta-2:
368
Last Update:
16 Oct 2017
Package Maintainer(s):
Software Author(s):
- Meteor Development Group
- Inc.
Tags:
meteor- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Meteor
This is a prerelease version of Meteor.
- 1
- 2
- 3
0.0.1-beta-2 | Updated: 16 Oct 2017
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
201,116
Downloads of v 0.0.1-beta-2:
368
Maintainer(s):
Software Author(s):
- Meteor Development Group
- Inc.
Tags:
meteorMeteor 0.0.1-beta-2
This is a prerelease version of Meteor.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Meteor Development Group, Inc. The inclusion of Meteor Development Group, Inc. trademark(s), if any, upon this webpage is solely to identify Meteor Development Group, Inc. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Meteor, run the following command from the command line or from PowerShell:
To upgrade Meteor, run the following command from the command line or from PowerShell:
To uninstall Meteor, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download meteor --internalize --version=0.0.1-beta-2 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade meteor -y --source="'INTERNAL REPO URL'" --version="'0.0.1-beta-2'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade meteor -y --source="'INTERNAL REPO URL'" --version="'0.0.1-beta-2'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install meteor
win_chocolatey:
name: meteor
version: '0.0.1-beta-2'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'meteor' do
action :install
source 'INTERNAL REPO URL'
version '0.0.1-beta-2'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller meteor
{
Name = "meteor"
Version = "0.0.1-beta-2"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'meteor':
ensure => '0.0.1-beta-2',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
Meteor is an ultra-simple environment for building modern web
applications.
With Meteor you write apps:
* in modern JavaScript
* that send data over the wire, rather than HTML
* using your choice of popular open-source libraries
> As with the previous Meteor installer, Meteor will be installed into %LocalAppData%\.meteor
, which also serves as a global cache for all Meteor packages. Re-installing or uninstalling Meteor will automatically purge this directory.
# Stop on all errors.
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Import-Module -Force "$toolsDir\helpers.psm1"
Write-Host "Removing the Meteor data directory..."
# The Meteor data holds all of the information about a Meteor install.
Remove-MeteorDataDirectory
# Meteor Helpers
#
# "Temp" logic borrowed from Install-ChocolateyZipPackage: https://git.io/vdEZj
$chocTempDir = $env:TEMP
$tempDir = Join-Path $chocTempDir "$($env:chocolateyPackageName)"
if ($env:chocolateyPackageVersion -ne $null) {
$tempDir = Join-Path $tempDir "$($env:chocolateyPackageVersion)";
}
$tempDir = $tempDir -replace '\\chocolatey\\chocolatey\\','\chocolatey\'
# The current user's %LOCALAPPDATA% directory. We'll set it once, as
# it should not change.
$localAppData = [Environment]::GetFolderPath('LocalApplicationData')
<#
.Synopsis
Obtain a unique temporary directory, within the installer temporary directory.
#>
Function Get-InstallerTempDirectory {
[System.IO.Directory]::CreateDirectory($tempDir) | Out-Null
"$tempDir"
}
<#
.Synopsis
Obtain a unique temporary directory, within the installer temporary directory.
#>
Function New-TempDirectory {
[string] $name = [System.Guid]::NewGuid()
New-Item -ItemType Directory -Path (Join-Path $tempDir $name)
}
Function Assert-LocalAppData {
if (!(Test-Path -LiteralPath $localAppData -PathType 'Container')) {
throw "LocalAppData must be available to install in."
}
}
<#
.Synopsis
Retrieve the path to the Meteor data directory.
#>
Function Get-MeteorDataDirectory {
Join-Path $localAppData '.meteor'
}
<#
.Synopsis
Completely remove the Meteor data directory.
#>
Function Initialize-MeteorDataDirectory {
Assert-LocalAppData
$meteorLocalAppData = Get-MeteorDataDirectory
[System.IO.Directory]::CreateDirectory($meteorLocalAppData) | Out-Null
}
<#
.Synopsis
Completely remove the Meteor data directory.
#>
Function Remove-MeteorDataDirectory {
Remove-DirectoryRecursively $(Get-MeteorDataDirectory)
}
<#
.Synopsis
Obtain the query string parameters for the boostrap link
#>
Function New-BootstrapLinkQueryString {
Param (
[Parameter(Mandatory=$True, Position=0)]
[string]$Arch,
[Parameter(Position=1)]
[string]$Release
)
$queryString = "?arch=${Arch}"
if ($Release) {
$queryString += "&release=${Release}"
}
$queryString
}
<#
.Synopsis
Remove longer directory paths in a more aggressive way.
.Description
Meteor directories are very long due to deeply nested npm 'node_modules'
directories. This assists with removing those deep folder trees.
#>
Function Remove-DirectoryRecursively {
Param (
[Parameter(Mandatory=$True, Position=0)]
[string]$Path
)
if (Test-Path -LiteralPath $Path -PathType 'Container') {
if (Get-Command "robocopy.exe" -ErrorAction SilentlyContinue) {
# Quietly use Robocopy to sync the Path with an empty directory.
$emptyTempDir = New-TempDirectory
& robocopy.exe $emptyTempDir $Path /purge | Out-Null
Remove-Item $Path -Recurse -Force
Remove-Item $emptyTempDir -Force
} else {
[System.IO.Directory]::Delete($Path, $true)
}
}
}
<#
.Synopsis
Remove the old, Wix-based installer, which is no longer used.
.Description
Previously, Meteor was installed with a WiX-based installer. This installer
is no longer actively maintained and this removes any such install.
#>
Function Remove-OldMeteorInstall {
[array]$existing = Get-UninstallRegistryKey -SoftwareName "Meteor"
If ($existing.Count -And $existing.QuietUninstallString) {
Write-Output "$existing"
Write-Output "Removing exising Meteor installation with installer"
Write-Output " => $($existing.QuietUninstallString)"
& cmd /c $($existing.QuietUninstallString)
}
}
Export-ModuleMember -Function `
Assert-LocalAppData,
Get-InstallerTempDirectory,
Get-MeteorDataDirectory,
Initialize-MeteorDataDirectory,
New-BootstrapLinkQueryString,
Remove-OldMeteorInstall,
Remove-MeteorDataDirectory
This Chocolatey package, which provides the Meteor open-source
JavaScript platform, is maintained by the same maintainers of the Meteor
open-source source project itself, which is overseen by Meteor
Development Group, Inc.
Log in or click on link to see number of positives.
- meteor-bootstrap-os.windows.x86_32.tar.gz (4553665f2118) - ## / 49
- meteor.0.0.1-beta-2.nupkg (dfb84e640cad) - ## / 61
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Meteor 0.0.5 | 32033 | Saturday, September 19, 2020 | Approved | |
Meteor 0.0.4 | 2357 | Tuesday, August 18, 2020 | Approved | |
Meteor 0.0.2 | 152111 | Thursday, November 16, 2017 | Approved | |
Meteor 0.0.2-beta-2 | 408 | Thursday, November 16, 2017 | Exempted | |
Meteor 0.0.2-beta-1 | 781 | Tuesday, November 7, 2017 | Exempted | |
Meteor 0.0.1 | 10187 | Thursday, October 19, 2017 | Approved | |
Meteor 0.0.1-beta-5 | 372 | Wednesday, October 18, 2017 | Exempted | |
Meteor 0.0.1-beta-4 | 346 | Wednesday, October 18, 2017 | Exempted | |
Meteor 0.0.1-beta-3 | 336 | Wednesday, October 18, 2017 | Exempted | |
Meteor 0.0.1-beta-2 | 368 | Monday, October 16, 2017 | Exempted | |
Meteor 0.0.1-beta-1 | 342 | Monday, October 16, 2017 | Exempted | |
Meteor 0.0.1-beta | 376 | Friday, October 13, 2017 | Exempted |
2011-present
This package has no dependencies.
Ground Rules:
- This discussion is only about Meteor and the Meteor package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Meteor, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.