
Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.
-
Introduction
SWC currently provides its cli package
@swc/cli. It is a wrapping node.js script to core node.js binding@swc/node. It is quite a common pattern to build CLI on top of the library we are offering, which also allows us to share core library to the application. However, it means every CLI invocation need to spend some time towarm upnode.js process. Moreover, while SWC itself is agnostic to any javascript runtime, cli requires to install node.js as a dependency We spent some time writing a native CLI binary for SWC to attempt to resolve those. While it only supports very basic features I'd like to share it and would like to welcome any contributions.Installation
Please note distribution needs more thought for actual release.
There are 2 ways to use new cli currently. First, if you have
cargoinstalled you can install it viaOr if you have node.js with npm or other package manager you can install it via
Npm package's binary name is
swcx. It is to avoid to conflict existing@swc/cli's binary entryswc. I expect it'll likely change with proper distribution later.Using CLI
There is one major difference between
@swc/cliand new binary. Previouslyswcwas an entrypoint to SWC's compilation (transform). New CLI tries to consolidates all of the features of SWC with its subcommand.Option questions
It is early stage of development and there are lot of open questions need to be resolved.
@swc/coreships cli by default, or should be installed separately via@swc/cli?How to contribute
We welcome any contribution to improve, implement the remaining SWC CLI features. If you'd like to dive in, please check these.
executefn for new features, or fix (https://github.com/swc-project/swc/blob/main/crates/swc_cli/src/commands/plugin.rs#L120)For
compilesubcommand, there is a predefined option from existing@swc/cliwe need to port over (https://github.com/swc-project/swc/blob/main/crates/swc_cli/src/commands/compile.rs#L24). For other subcommands that is not fully determined yet, please suggest a proposal at https://github.com/swc-project/swc/discussions before making an actual implementation PR. We hope to make CLI's public interface to stay long without major breaking changes and want to start from minimal set of features.FAQ
@swc/cli? : Eventually yes. However, we'll make an official announcement when it's ready. Until then@swc/cliwill not be deprecated.npx swcxstill invokes node.js, isn't it?: Yes. We'll need to sort out how to distribute binary, while having linkednode_modules/.binwill exist to easier access from npm ecosystem.Beta Was this translation helpful? Give feedback.