首页 > web前端 > js教程 > 正文

从 shell 脚本迁移到“Bun 脚本”

花韻仙語
发布: 2024-09-28 08:30:01
转载
543人浏览过

从 shell 脚本迁移到“bun 脚本”

在 zcloud 从事专注于流程自动化和基础设施的项目时,我们经常遇到需要创建多个函数来执行验证和通用流程的情况。仅使用一种操作系统时一切正常,但当涉及多个系统时情况就会变得复杂。

在我们的例子中,大部分开发都在 linux 上进行,但我们还需要确保与 macos 的兼容性。这通常会导致代码不兼容。

为了解决这个问题,我们将 shell 脚本函数迁移到 javascript 文件,并使用 bun 作为解释器。我们选择 bun 因为它提供了一种通过其 shell api 功能像 shell 一样运行命令的简单方法。

下面是我们用来在应用基础设施修改之前检查任何代码更改的函数示例。

shell 脚本代码:

function zc_check_pristine_git() {
    if [ "$zc_current_env" = "staging" ] || [ "$zc_current_env" = "dev" ]; then
      return 0
    fi

    local not_pristine=0
    local modified_files=""

    # check for staged but uncommitted changes
    staged_changes=$(git diff --name-only --cached)
    if [ -n "$staged_changes" ]; then
        not_pristine=1
        modified_files+="staged changes:\n$staged_changes"
    fi

    # check for unstaged changes
    unstaged_changes=$(git diff --name-only)
    if [ -n "$unstaged_changes" ]; then
        not_pristine=1
        modified_files+="unstaged changes:\n$unstaged_changes"
    fi

    # check for untracked files
    untracked_files=$(git ls-files --others --exclude-standard)
    if [ -n "$untracked_files" ]; then
        not_pristine=1
        modified_files+="untracked files:\n$untracked_files"
    fi

    # check if the current branch is ahead of the remote
    ahead_commits=$(git log @{u}.. --oneline)
    if [ -n "$ahead_commits" ]; then
        not_pristine=1
        modified_files+="commits ahead of the remote:\n$ahead_commits\n\n"
    fi

    if [ $not_pristine -eq 1 ]; then
        echo -e "$modified_files"
        return 1
    fi

    return 0
}
登录后复制

为了将此代码转换为 javascript,我们在项目的 bin 目录(已在 path 中)中创建了一个名为 zc_check_pristine_git 的文件,其中包含以下内容:

#!/usr/bin/env bun
// @language javascript

import { checkpristinegit } from '../js/helpers/helpers.js';

await checkpristinegit({ currentenv: process.env.zc_current_env });
登录后复制

我们使用 shebang #!/usr/bin/env bun 来表明我们正在使用 bun 作为解释器。

我们添加了注释 // @language javascript,以便 ide 将文件识别为 javascript(我们主要使用 jetbrains 工具)。

然后,我们导入了实际执行的函数。

从 shell 转换为 javascript 的函数的实现:

export const checkPristineGit = async ({ currentEnv }) => {
  exitOnError(() => {
    notEmpty(currentEnv, 'currentEnv is required');
  });
  if (['staging', 'dev'].includes(currentEnv)) {
    return;
  }

  let notPristine = 0;
  let modifiedFiles = '';

  // Check for staged but uncommitted changes
  const stagedChanges = await $`git diff --name-only --cached`.text();
  if (stagedChanges !== '') {
    notPristine = 1;
    modifiedFiles += `Staged changes:\n${stagedChanges}`;
  }

  // Check for unstaged changes
  const unstagedChanges = await $`git diff --name-only`.text();
  if (unstagedChanges !== '') {
    notPristine = 1;
    modifiedFiles += `Unstaged changes:\n${unstagedChanges}`;
  }

  // Check for untracked files
  const untrackedFiles = await $`git ls-files --others --exclude-standard`.text();
  if (untrackedFiles !== '') {
    notPristine = 1;
    modifiedFiles += `Untracked files:\n${untrackedFiles}`;
  }

  // Check if the current branch is ahead of the remote
  const aheadCommits = await $`git log @{u}.. --oneline`.text();
  if (aheadCommits !== '') {
    notPristine = 1;
    modifiedFiles += `Commits ahead of the remote:\n${aheadCommits}`;
  }

  if (notPristine) {
    console.warn('Error: You can only apply changes in production environments if the repository is in a pristine state.');
    console.warn(modifiedFiles);
    process.exit(1);
  }
};
登录后复制

这样,我们就标准化了 javascript 代码,这些代码将像 shell 脚本一样执行。


对提供的示例中未实现的函数(exitonerror、notempty)的调用。

以上就是从 shell 脚本迁移到“Bun 脚本”的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:dev.to网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号